Overview
Comment: | * tlsInt.h: added err.h include |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
32a23903b7df9f8e266095288a4559bc |
User & Date: | hobbs on 2000-08-18 19:17:14 |
Other Links: | manifest | tags |
Context
2000-08-18
| ||
19:17 | * tlsBIO.c: * tlsIO.c: corrected pedantic cast errors. check-in: 5bc402b4bf user: hobbs tags: trunk | |
19:17 | * tlsInt.h: added err.h include check-in: 32a23903b7 user: hobbs tags: trunk | |
2000-08-16
| ||
18:00 | * tests/ciphers.test: improved ability to change constraint setting for whether user compiled against RSA or OpenSSL libs. check-in: b46031d19e user: hobbs tags: trunk | |
Changes
Modified tlsInt.h from [45743e25af] to [14a764e8b0].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | /* * Copyright (C) 1997-2000 Matt Newman <[email protected]> * |
︙ | |||
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | + + | #define NO_RC5 #define NO_RSA #define NO_SSL2 #endif #ifdef BSAFE #include <ssl.h> #include <err.h> #else #include <openssl/ssl.h> #include <openssl/err.h> #endif #ifdef TCL_STORAGE_CLASS # undef TCL_STORAGE_CLASS #endif #ifdef BUILD_tls # define TCL_STORAGE_CLASS DLLEXPORT |
︙ |