Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Corrected extraneous format specifier |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | wip-fix-io-layer |
| Files: | files | file ages | folders |
| SHA1: |
ff4801f47321195180d29f071ef2bed4 |
| User & Date: | rkeene 2016-12-11 19:12:46 |
Context
|
2016-12-11
| ||
| 19:20 | Updated to support optionally enabling/disabling a faster path for talking to the underlying channel check-in: d25ae3c232 user: rkeene tags: wip-fix-io-layer | |
| 19:12 | Corrected extraneous format specifier check-in: ff4801f473 user: rkeene tags: wip-fix-io-layer | |
| 19:10 | Added a lot of work towards fixing the I/O layer check-in: ee7ea6a917 user: rkeene tags: wip-fix-io-layer | |
Changes
Changes to tlsBIO.c.
| ︙ | ︙ | |||
142 143 144 145 146 147 148 |
static int BioRead(BIO *bio, char *buf, int bufLen) {
Tcl_Channel chan;
int ret = 0;
int tclEofChan;
chan = Tls_GetParent((State *) BIO_get_data(bio));
| | | 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 |
static int BioRead(BIO *bio, char *buf, int bufLen) {
Tcl_Channel chan;
int ret = 0;
int tclEofChan;
chan = Tls_GetParent((State *) BIO_get_data(bio));
dprintf("[chan=%p] BioRead(%p, <buf>, %d)", (void *) chan, (void *) bio, bufLen);
if (buf == NULL) {
return 0;
}
ret = Tcl_ReadRaw(chan, buf, bufLen);
|
| ︙ | ︙ |