| 63 | | SSL * ssl; //For TLS, holds sock's SSL connection |
| 64 | | SSL_CTX * contxt; //For TLS, holds OpenSSL's SSL context |
| 65 | | int multiplex; //For MULTIPLEX, to determine whether multiplex is on |
| 66 | | char header[16]; //For MULTIPLEX, header formatting |
| 67 | | unsigned int * ptr; //For MULTIPLEX, convenient pointer to header |
| 68 | | char * user; //For AUTH |
| 69 | | char * host; //For AUTH |
| | 65 | SSL * ssl; //For TLS, holds sock's SSL connection |
| | 66 | SSL_CTX * contxt; //For TLS, holds OpenSSL's SSL context |
| | 67 | int multiplex; //For MULTIPLEX, to determine whether multiplex is on |
| | 68 | int multiplex_xtra; //For MULTIPLEX, remaining data until next multiplexing header |
| | 69 | char header[16]; //For MULTIPLEX, header formatting |
| | 70 | unsigned int * ptr; //For MULTIPLEX, convenient pointer to header |
| | 71 | char * user; //For AUTH |
| | 72 | char * host; //For AUTH |