Overview
Comment: | Minor cleanups to remove obsolete code and add missing change log entry |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1.8 |
Files: | files | file ages | folders |
SHA3-256: |
bb89d732243ecb488707f10aff6c3204 |
User & Date: | bohagan on 2024-03-26 21:28:55 |
Other Links: | branch diff | manifest | tags |
Context
2024-03-29
| ||
20:48 | Added more TCL 9 backwards compatibility definitions check-in: 945acae4ba user: bohagan tags: tls-1.8 | |
2024-03-26
| ||
21:28 | Minor cleanups to remove obsolete code and add missing change log entry check-in: bb89d73224 user: bohagan tags: tls-1.8 | |
2024-03-15
| ||
23:39 | Updated make file to correct bugs check-in: f5d3f859aa user: bohagan tags: trunk | |
Changes
Modified ChangeLog from [7400a29b58] to [03077231f7].
|
Modified generic/tls.c from [62e132dc18] to [eb71938a0b].
︙ | |||
156 157 158 159 160 161 162 | 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | - + | *------------------------------------------------------------------- */ static void InfoCallback(const SSL *ssl, int where, int ret) { State *statePtr = (State*)SSL_get_app_data((SSL *)ssl); Tcl_Interp *interp = statePtr->interp; Tcl_Obj *cmdPtr; |
︙ | |||
3016 3017 3018 3019 3020 3021 3022 | 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 | - - - - - - - - - - - - - - - - - - - - - - - - - | /* Initialize BOTH libcrypto and libssl. */ OPENSSL_init_ssl(OPENSSL_INIT_LOAD_SSL_STRINGS | OPENSSL_INIT_LOAD_CRYPTO_STRINGS | OPENSSL_INIT_ADD_ALL_CIPHERS | OPENSSL_INIT_ADD_ALL_DIGESTS, NULL); BIO_new_tcl(NULL, 0); |