Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Synchronet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
127
Issues
127
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Main
Synchronet
Compare Revisions
415c9d79a829fa342a649e5ad5ddca1a4ef8f181...da5a58d88c5ab355bb1f8f7a5c5ee9869e0446e5
Source
da5a58d88c5ab355bb1f8f7a5c5ee9869e0446e5
Select Git revision
...
Target
415c9d79a829fa342a649e5ad5ddca1a4ef8f181
Select Git revision
Compare
Commits (1)
Re-sync the BBS_OPT_* values with src/sbbs3/startup.h
· da5a58d8
Rob Swindell
authored
Dec 02, 2020
da5a58d8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
exec/load/sbbsdefs.js
exec/load/sbbsdefs.js
+10
-5
No files found.
exec/load/sbbsdefs.js
View file @
da5a58d8
...
...
@@ -114,19 +114,24 @@ var SS_FASTLOGON =(1<<31); /* Fast logon */
/********************************************/
/* bbs.startup_options */
/********************************************/
var
BBS_OPT_KEEP_ALIVE
=
(
1
<<
0
);
/* Send keep-alives */
var
BBS_OPT_XTRN_MINIMIZED
=
(
1
<<
1
);
/* Run externals minimized */
var
BBS_OPT_AUTO_LOGON
=
(
1
<<
2
);
/* Auto-logon via IP */
var
BBS_OPT_DEBUG_TELNET
=
(
1
<<
3
);
/* Debug telnet commands */
var
BBS_OPT_SYSOP_AVAILABLE
=
(
1
<<
4
);
/* Available for chat */
var
BBS_OPT_ALLOW_RLOGIN
=
(
1
<<
5
);
/* Allow logins via BSD RLogin */
var
BBS_OPT_USE_2ND_RLOGIN
=
(
1
<<
6
);
/* Use 2nd username in BSD RLogin */
var
BBS_OPT_NO_QWK_EVENTS
=
(
1
<<
7
);
/* Don't run QWK-related events */
var
BBS_OPT_NO_TELNET_GA
=
(
1
<<
8
);
/* Don't send periodic Telnet GAs */
var
BBS_OPT_NO_EVENTS
=
(
1
<<
9
);
/* Don't run event thread */
var
BBS_OPT_NO_SPY_SOCKETS
=
(
1
<<
10
);
/* Don't create spy sockets */
var
BBS_OPT_NO_HOST_LOOKUP
=
(
1
<<
11
);
/* Don't lookup hostname */
var
BBS_OPT_NO_JAVASCRIPT
=
(
1
<<
29
);
/* JavaScript disabled */
var
BBS_OPT_LOCAL_TIMEZONE
=
(
1
<<
30
);
/* Don't force UCT/GMT */
var
BBS_OPT_ALLOW_SSH
=
(
1
<<
12
);
/* Allow logins via BSD SSH */
var
BBS_OPT_NO_DOS
=
(
1
<<
13
);
/* Can't to run 16-bit DOS prog */
var
BBS_OPT_NO_NEWDAY_EVENTS
=
(
1
<<
14
);
/* Don't check for a new day */
var
BBS_OPT_HAPROXY_PROTO
=
(
1
<<
26
);
/* Incoming requests via HAproxy */
var
BBS_OPT_NO_RECYCLE
=
(
1
<<
27
);
/* Disable recycling of server */
var
BBS_OPT_GET_IDENT
=
(
1
<<
28
);
/* Get Identity (RFC 1413) */
var
BBS_OPT_MUTE
=
(
1
<<
31
);
/* Mute sounds */
/
*******************************************/
/*
*******************************************/
/********************************************/
/* bbs.online */
...
...