ttls.h - sacc - [fork] customized build of sacc, the simple console gopher client
(HTM) git clone git://src.adamsgaard.dk/sacc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) LICENSE
---
ttls.h (357B)
---
1 /* See LICENSE file for copyright and license details. */
2 #ifndef USE_TLS
3
4 #define TLS_WANT_POLLIN 0
5 #define TLS_WANT_POLLOUT 0
6 #define tls_read(a,b,c) 0
7 #define tls_write(a,b,c) 0
8 #define tls_close(a) 0
9 #define tls_reset(a) 0
10 #define tls_error(a) 0
11 #define tls_client() 0
12 #define tls_connect_socket(a,b,c) 0
13 #else
14 #include <tls.h>
15 #endif