Differences From Artifact [8221535697]:
- File tls.c — part of check-in [689d55e070] at 2017-05-01 14:41:48 on branch trunk — Fixed an issue where EAGAIN was translated into a successful handshake, addressing [1367823d51] (user: rkeene, size: 47917) [annotate] [blame] [check-ins using]
To Artifact [0dc23990ac]:
- File tls.c — part of check-in [87d7c791f5] at 2017-05-01 14:42:25 on branch trunk — Print a debug message when handshaking works but an error is being captured (user: rkeene, size: 48010) [annotate] [blame] [check-ins using] [more...]
︙ | |||
674 675 676 677 678 679 680 681 682 683 684 685 686 687 | 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 | + + + + | errStr = Tcl_PosixError(interp); } Tcl_AppendResult(interp, "handshake failed: ", errStr, (char *) NULL); dprintf("Returning TCL_ERROR with handshake failed: %s", errStr); return(TCL_ERROR); } else { if (err != 0) { dprintf("Got an error with a completed handshake: err = %i", err); } ret = 1; } dprintf("Returning TCL_OK with data \"%i\"", ret); Tcl_SetObjResult(interp, Tcl_NewIntObj(ret)); return(TCL_OK); |
︙ |