Differences From Artifact [9780f0c9a5]:
- File tests/tlsIO.test — part of check-in [69314245a1] at 2023-05-24 23:26:40 on branch status_x509 — Fixed test cases to run under Windows and added TLS 1.3 support (user: bohagan, size: 57601) [annotate] [blame] [check-ins using] [more...]
To Artifact [4478956f16]:
- File tests/tlsIO.test — part of check-in [104e43c85e] at 2023-11-22 22:18:54 on branch trunk — Fix to IO test missing set blocking value. See https://core.tcl-lang.org/tcltls/tktview/bb7085cfdc (user: bohagan, size: 57632) [annotate] [blame] [check-ins using] [more...]
︙ | |||
1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 | 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 | + | # return the channel to line buffering mode (TLS sets it to 'none'). fconfigure $s1 -blocking 0 -buffering line vwait x # TLS handshaking needs one byte from the client... puts $s1 a # need update to complete TLS handshake in-process update fconfigure $s1 -blocking 1 set z [gets $s1] close $s close $s1 set z } bye test tlsIO-9.1 {testing spurious events} {socket} { |
︙ |