Skip to content
Snippets Groups Projects
Commit a94dd4a6 authored by rswindell's avatar rswindell
Browse files

Added new option: BBS_OPT_NO_QWK_EVENTS to prevent QWK events from running in this instance.

parent f81bfb45
No related branches found
No related tags found
No related merge requests found
......@@ -215,6 +215,7 @@ int main(int argc, char** argv)
bbs_startup.last_node=4;
bbs_startup.telnet_port=IPPORT_TELNET;
bbs_startup.telnet_interface=INADDR_ANY;
bbs_startup.options|=BBS_OPT_NO_QWK_EVENTS;
#ifdef USE_RLOGIN
bbs_startup.rlogin_port=513;
......
......@@ -96,5 +96,7 @@ typedef struct {
#define BBS_OPT_SYSOP_AVAILABLE (1<<4) // Available for chat
#define BBS_OPT_ALLOW_RLOGIN (1<<5) // Allow logins via BSD RLogin
#define BBS_OPT_USE_2ND_RLOGIN (1<<6) // Use 2nd username in BSD RLogin
#define BBS_OPT_NO_QWK_EVENTS (1<<7) // Don't run QWK-related events
#define BBS_OPT_NO_HOST_LOOKUP (1<<11)
#define BBS_OPT_MUTE (1<<31) // Mute sounds
\ No newline at end of file
#define BBS_OPT_MUTE (1<<31) // Mute sounds
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment