"Fossies" - the Fresh Open Source Software Archive

Member "wrk-4.2.0/src/ssl.h" (7 Feb 2021, 297 Bytes) of package /linux/www/wrk-4.2.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "ssl.h" see the Fossies "Dox" file reference documentation.

    1 #ifndef SSL_H
    2 #define SSL_H
    3 
    4 #include "net.h"
    5 
    6 SSL_CTX *ssl_init();
    7 
    8 status ssl_connect(connection *, char *);
    9 status ssl_close(connection *);
   10 status ssl_read(connection *, size_t *);
   11 status ssl_write(connection *, char *, size_t, size_t *);
   12 size_t ssl_readable(connection *);
   13 
   14 #endif /* SSL_H */