Overview
Comment: | Merge trunk |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | bohagan |
Files: | files | file ages | folders |
SHA3-256: |
0d2b96f6d81084dd53e97083b7668528 |
User & Date: | jan.nijtmans on 2024-02-22 17:51:32 |
Other Links: | branch diff | manifest | tags |
Context
2024-02-22
| ||
20:48 | Merge trunk check-in: e514e3a5e3 user: jan.nijtmans tags: bohagan | |
17:51 | Merge trunk check-in: 0d2b96f6d8 user: jan.nijtmans tags: bohagan | |
17:51 | Forward declaration no longer necessary check-in: 93c001e9c4 user: jan.nijtmans tags: nijtmans | |
17:44 | Merge trunk. tlsBIO.c is now fully equal to trunk. check-in: dae8857d72 user: jan.nijtmans tags: bohagan | |
Changes
Modified generic/tlsBIO.c from [dd9500370d] to [26205b6a4d].
︙ | ︙ | |||
23 24 25 26 27 28 29 | #define BIO_meth_set_read(bio, val) (bio)->bread = val; #define BIO_meth_set_puts(bio, val) (bio)->bputs = val; #define BIO_meth_set_ctrl(bio, val) (bio)->ctrl = val; #define BIO_meth_set_create(bio, val) (bio)->create = val; #define BIO_meth_set_destroy(bio, val) (bio)->destroy = val; #endif | < < < < < < < < < < < < < | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #define BIO_meth_set_read(bio, val) (bio)->bread = val; #define BIO_meth_set_puts(bio, val) (bio)->bputs = val; #define BIO_meth_set_ctrl(bio, val) (bio)->ctrl = val; #define BIO_meth_set_create(bio, val) (bio)->create = val; #define BIO_meth_set_destroy(bio, val) (bio)->destroy = val; #endif static int BioWrite(BIO *bio, const char *buf, int bufLen) { Tcl_Channel chan; Tcl_Size ret; int tclEofChan, tclErrno; chan = Tls_GetParent((State *) BIO_get_data(bio), 0); |
︙ | ︙ |