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

Added [Zmodem] Escape8thBit and EscapeCtrlChars sexyz.ini values.

parent 49901d3a
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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);
......
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