Differences From Artifact [77155f526d]:
- File tlsIO.c — part of check-in [5aea4802ca] at 2016-12-07 15:10:02 on branch tls-1-7 — More work towards getting the state engine for waiting for a connection to come back together (user: rkeene, size: 30210) [annotate] [blame] [check-ins using]
To Artifact [0ede72c6bc]:
- File tlsIO.c — part of check-in [ed1ce834df] at 2016-12-07 15:12:41 on branch tls-1-7 — Added more debugging (user: rkeene, size: 30333) [annotate] [blame] [check-ins using]
︙ | |||
939 940 941 942 943 944 945 946 947 948 949 950 951 952 | 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 | + + + + | dprintf("E! "); *errorCodePtr = EAGAIN; return -1; } else { continue; } } else if (err == 0) { if (SSL_in_init(statePtr->ssl)) { dprintf("SSL_in_init() is true"); } if (Tcl_Eof(statePtr->self)) { dprintf("Error = 0 and EOF is set, returning with 0"); return 0; } dprintf("CR! "); *errorCodePtr = ECONNRESET; |
︙ |