Changeset 43 in Main for trunk/Server/tw_http.h
- Timestamp:
- Sep 18, 2024, 6:19:03 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Server/tw_http.h
r32 r43 5 5 6 6 #include <stdbool.h> 7 8 #include "../config.h" 7 9 8 10 struct tw_http_request { … … 22 24 23 25 #ifdef SOURCE 26 #ifndef NO_SSL 24 27 #include <openssl/ssl.h> 28 #endif 25 29 void tw_free_request(struct tw_http_request* req); 30 #ifndef NO_SSL 26 31 int tw_http_parse(SSL* ssl, int sock, struct tw_http_request* req); 32 #else 33 int tw_http_parse(void* ssl, int sock, struct tw_http_request* req); 34 #endif 27 35 #endif 28 36
Note:
See TracChangeset
for help on using the changeset viewer.