]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
That OVERLAPPED fix seems to have made flow control useful as well
authorSimon Tatham <anakin@pobox.com>
Mon, 28 Aug 2006 18:36:11 +0000 (18:36 +0000)
committerSimon Tatham <anakin@pobox.com>
Mon, 28 Aug 2006 18:36:11 +0000 (18:36 +0000)
(presumably Windows's serial buffer is actually _filling up_,
causing an XOFF to be sent, now that my dodgy I/O code isn't causing
it to leak). So I think I'll switch the default flow control to
XON/XOFF, since it actually seems to do something now.

[originally from svn r6829]

settings.c

index 9aeaf530a1e9dc0d6c767ce22827867b30079027..3c4c73e33386866f6cb004336da1cc7186e5d0bd 100644 (file)
@@ -768,8 +768,8 @@ void load_open_settings(void *sesskey, int do_host, Config *cfg)
     gppi(sesskey, "SerialSpeed", 9600, &cfg->serspeed);
     gppi(sesskey, "SerialDataBits", 8, &cfg->serdatabits);
     gppi(sesskey, "SerialStopHalfbits", 2, &cfg->serstopbits);
-    gppi(sesskey, "SerialParity", 0, &cfg->serparity);
-    gppi(sesskey, "SerialFlowControl", 0, &cfg->serflow);
+    gppi(sesskey, "SerialParity", SER_PAR_NONE, &cfg->serparity);
+    gppi(sesskey, "SerialFlowControl", SER_FLOW_XONXOFF, &cfg->serflow);
 }
 
 void do_defaults(char *session, Config * cfg)