Differences From Artifact [fc3b42ebe3]:
- File generic/tlsBIO.c — part of check-in [b921cb3e6e] at 2024-02-20 14:58:09 on branch nijtmans — Move all *.c and *.h files to the /generic/ directory. Update win/makefile.vc from [https://chiselapp.com/user/bohagan/repository/TCLTLS/index] (user: jan.nijtmans, size: 8850) [annotate] [blame] [check-ins using]
- File tlsBIO.c — part of check-in [ceb72b0012] at 2024-02-20 13:00:50 on branch nijtmans — Make all C-/H-files Tcl 9-ready, with all kinds of code-cleanup. Build environment not handled yet. (user: jan.nijtmans, size: 8850) [annotate] [blame] [check-ins using]
To Artifact [e29f3b54d6]:
- File generic/tlsBIO.c — part of check-in [913359443b] at 2024-02-22 07:52:22 on branch nijtmans — TlsIO.test Hostname Fix. Patch by Sergei Golovan (Debian) to make the client socket connect to localhost instead of [info hostname] to prevent intermittent test failures inside mock(1). Also, account for a change in error message "unsupported protocol" instead of "wrong version number". -- Sergei Golovan <email address hidden> Thu, 18 Jul 2019 15:00:18 +0300 Source: https://sources.debian.org/src/tcltls/1.7.22-3/debian/patches/hostname-tests.patch (user: jan.nijtmans, size: 8838) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
227 228 229 230 231 232 233 | chan = Tls_GetParent((State *) BIO_get_data(bio), 0); dprintf("BioCtrl(%p, 0x%x, 0x%lx, %p)", bio, cmd, num, ptr); switch (cmd) { case BIO_CTRL_RESET: dprintf("Got BIO_CTRL_RESET"); | < | 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | chan = Tls_GetParent((State *) BIO_get_data(bio), 0); dprintf("BioCtrl(%p, 0x%x, 0x%lx, %p)", bio, cmd, num, ptr); switch (cmd) { case BIO_CTRL_RESET: dprintf("Got BIO_CTRL_RESET"); ret = 0; break; case BIO_C_FILE_SEEK: dprintf("Got BIO_C_FILE_SEEK"); ret = 0; break; case BIO_C_FILE_TELL: |
︙ | ︙ |