diff options
Diffstat (limited to 'src/lib/libssl/src/apps/s_apps.h')
-rw-r--r-- | src/lib/libssl/src/apps/s_apps.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/s_apps.h b/src/lib/libssl/src/apps/s_apps.h index 0b461083eb..757d3f3d9e 100644 --- a/src/lib/libssl/src/apps/s_apps.h +++ b/src/lib/libssl/src/apps/s_apps.h | |||
@@ -117,7 +117,7 @@ | |||
117 | #include <conio.h> | 117 | #include <conio.h> |
118 | #endif | 118 | #endif |
119 | 119 | ||
120 | #ifdef OPENSSL_SYS_MSDOS | 120 | #if defined(OPENSSL_SYS_MSDOS) && !defined(_WIN32) |
121 | #define _kbhit kbhit | 121 | #define _kbhit kbhit |
122 | #endif | 122 | #endif |
123 | 123 | ||
@@ -162,7 +162,7 @@ int extract_port(char *str, short *port_ptr); | |||
162 | int extract_host_port(char *str,char **host_ptr,unsigned char *ip,char **p); | 162 | int extract_host_port(char *str,char **host_ptr,unsigned char *ip,char **p); |
163 | 163 | ||
164 | long MS_CALLBACK bio_dump_callback(BIO *bio, int cmd, const char *argp, | 164 | long MS_CALLBACK bio_dump_callback(BIO *bio, int cmd, const char *argp, |
165 | int argi, long argl, long ret); | 165 | int argi, long argl, long ret); |
166 | 166 | ||
167 | #ifdef HEADER_SSL_H | 167 | #ifdef HEADER_SSL_H |
168 | void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret); | 168 | void MS_CALLBACK apps_ssl_info_callback(const SSL *s, int where, int ret); |
@@ -171,3 +171,6 @@ void MS_CALLBACK tlsext_cb(SSL *s, int client_server, int type, | |||
171 | unsigned char *data, int len, | 171 | unsigned char *data, int len, |
172 | void *arg); | 172 | void *arg); |
173 | #endif | 173 | #endif |
174 | |||
175 | int MS_CALLBACK generate_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int *cookie_len); | ||
176 | int MS_CALLBACK verify_cookie_callback(SSL *ssl, unsigned char *cookie, unsigned int cookie_len); | ||