Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
cda254ea
Commit
cda254ea
authored
23 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Added QWK, CHAT, and TELNET_MODE bit definitions.
parent
3bc36a74
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/load/sbbsdefs.js
+37
-0
37 additions, 0 deletions
exec/load/sbbsdefs.js
with
37 additions
and
0 deletions
exec/load/sbbsdefs.js
+
37
−
0
View file @
cda254ea
...
...
@@ -211,6 +211,35 @@ var USER_WIP =(1<<21) /* Supports WIP terminal emulation */
var
USER_AUTOLOGON
=
(
1
<<
22
)
/* AutoLogon via IP */
/********************************************/
/********************************************/
/* user.qwk_settings */
/********************************************/
var
QWK_FILES
=
(
1
L
<<
0
)
/* Include new files list */
var
QWK_EMAIL
=
(
1
L
<<
1
)
/* Include unread e-mail */
var
QWK_ALLMAIL
=
(
1
L
<<
2
)
/* Include ALL e-mail */
var
QWK_DELMAIL
=
(
1
L
<<
3
)
/* Delete e-mail after download */
var
QWK_BYSELF
=
(
1
L
<<
4
)
/* Include messages from self */
var
QWK_UNUSED
=
(
1
L
<<
5
)
/* Currently unused */
var
QWK_EXPCTLA
=
(
1
L
<<
6
)
/* Expand ctrl-a codes to ascii */
var
QWK_RETCTLA
=
(
1
L
<<
7
)
/* Retain ctrl-a codes */
var
QWK_ATTACH
=
(
1
L
<<
8
)
/* Include file attachments */
var
QWK_NOINDEX
=
(
1
L
<<
9
)
/* Do not create index files in QWK */
var
QWK_TZ
=
(
1
L
<<
10
)
/* Include "@TZ" time zone in msgs */
var
QWK_VIA
=
(
1
L
<<
11
)
/* Include "@VIA" seen-bys in msgs */
var
QWK_NOCTRL
=
(
1
L
<<
12
)
/* No extraneous control files */
/********************************************/
/********************************************/
/* user.chat_settings */
/********************************************/
var
CHAT_ECHO
=
(
1
<<
0
)
/* Multinode chat echo */
var
CHAT_ACTION
=
(
1
<<
1
)
/* Chat actions */
var
CHAT_NOPAGE
=
(
1
<<
2
)
/* Can't be paged */
var
CHAT_NOACT
=
(
1
<<
3
)
/* No activity alerts */
var
CHAT_SPLITP
=
(
1
<<
4
)
/* Split screen private chat */
/********************************************/
/************************************************************************/
/* Valid flags for user.security.exempt/restrict/flags */
/************************************************************************/
...
...
@@ -429,3 +458,11 @@ var TG_CTRLKEYS =(1<<4) /* Interpret ^P ^U ^T, etc locally */
var
TG_PASSTHRU
=
(
1
<<
5
)
/* Pass-through telnet commands/responses */
var
TG_RLOGIN
=
(
1
<<
6
)
/* Use BSD RLogin protocol */
/********************************************/
/********************************************/
/* Bits in console.telnet_mode */
/********************************************/
var
TELNET_MODE_BIN_RX
=
(
1
<<
0
)
/* Binary receive (no CR to CRLF xlat) */
var
TELNET_MODE_ECHO
=
(
1
<<
1
)
/* Echo remotely */
var
TELNET_MODE_GATE
=
(
1
<<
2
)
/* Pass-through telnet commands/responses */
/********************************************/
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment