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
6efb4abf
Commit
6efb4abf
authored
19 years ago
by
rswindell
Browse files
Options
Downloads
Patches
Plain Diff
Added [Zmodem] Escape8thBit and EscapeCtrlChars sexyz.ini values.
parent
49901d3a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/sexyz.txt
+2
-0
2 additions, 0 deletions
docs/sexyz.txt
src/sbbs3/sexyz.c
+2
-0
2 additions, 0 deletions
src/sbbs3/sexyz.c
with
4 additions
and
0 deletions
docs/sexyz.txt
+
2
−
0
View file @
6efb4abf
...
...
@@ -208,6 +208,8 @@ Example .ini file (with default values given):
Streaming=TRUE ; set to FALSE to disable streaming (block-at-a-time)
CRC32=TRUE ; set to FALSE to force CRC-16 instead
EscapeTelnetIAC=TRUE ; send ZDLE/ZRUB1 instead of 0xff with -telnet
Escape8thBit=FALSE ; ZDLE-escape all bytes with bit-7 set
EscapeCtrlChars=FALSE ; ZDLE-escape all control characters (< 20h)
Compatibility
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/sexyz.c
+
2
−
0
View file @
6efb4abf
...
...
@@ -1343,6 +1343,8 @@ int main(int argc, char **argv)
zm
.
no_streaming
=!
iniReadBool
(
fp
,
"Zmodem"
,
"Streaming"
,
TRUE
);
zm
.
want_fcs_16
=!
iniReadBool
(
fp
,
"Zmodem"
,
"CRC32"
,
TRUE
);
zm
.
escape_telnet_iac
=
iniReadBool
(
fp
,
"Zmodem"
,
"EscapeTelnetIAC"
,
TRUE
);
zm
.
escape_8th_bit
=
iniReadBool
(
fp
,
"Zmodem"
,
"Escape8thBit"
,
FALSE
);
zm
.
escape_ctrl_chars
=
iniReadBool
(
fp
,
"Zmodem"
,
"EscapeCtrlChars"
,
FALSE
);
if
(
fp
!=
NULL
)
fclose
(
fp
);
...
...
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