Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Updated wording in debugging message to be more accurate |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | wip-fix-io-layer |
| Files: | files | file ages | folders |
| SHA1: |
6462992c9581c2711b00b86d4c72fa79 |
| User & Date: | rkeene 2016-12-12 01:15:12 |
Context
|
2016-12-12
| ||
| 01:51 | Made I/O test more useful when debugging is on and updated to deal with newer versions of OpenSSL check-in: 270ffbbc3e user: rkeene tags: wip-fix-io-layer | |
| 01:15 | Updated wording in debugging message to be more accurate check-in: 6462992c95 user: rkeene tags: wip-fix-io-layer | |
| 01:14 | More work on improving I/O routines check-in: 7df7a8696e user: rkeene tags: wip-fix-io-layer | |
Changes
Changes to tlsBIO.c.
| ︙ | ︙ | |||
87 88 89 90 91 92 93 |
validParentChannelFd = 1;
}
}
}
}
if (validParentChannelFd) {
| | | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
validParentChannelFd = 1;
}
}
}
}
if (validParentChannelFd) {
dprintf("We found a shortcut, this channel is backed by a socket: %i", parentChannelFdIn);
bio = BIO_new_socket(parentChannelFd, flags);
statePtr->flags |= TLS_TCL_FASTPATH;
return(bio);
}
dprintf("Falling back to Tcl I/O for this channel");
#endif
|
| ︙ | ︙ |