comparison third_party/wrk/src/ssl.h @ 178:94705b5986b3

[ThirdParty] Added WRK and luajit for load testing.
author MrJuneJune <me@mrjunejune.com>
date Thu, 22 Jan 2026 20:10:30 -0800
parents
children
comparison
equal deleted inserted replaced
177:24fe8ff94056 178:94705b5986b3
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 */