Line | |
---|
1 | /* $Id: tw_server.h 140 2024-09-23 11:31:18Z nishi $ */
|
---|
2 |
|
---|
3 | #ifndef __TW_SERVER_H__
|
---|
4 | #define __TW_SERVER_H__
|
---|
5 |
|
---|
6 | #ifdef __cplusplus
|
---|
7 | extern "C" {
|
---|
8 | #endif
|
---|
9 |
|
---|
10 | #include "../config.h"
|
---|
11 |
|
---|
12 | #include <stddef.h>
|
---|
13 |
|
---|
14 | #ifndef NO_SSL
|
---|
15 | #include <openssl/ssl.h>
|
---|
16 | #endif
|
---|
17 |
|
---|
18 | int tw_server_init(void);
|
---|
19 | void tw_server_loop(void);
|
---|
20 |
|
---|
21 | #ifndef NO_SSL
|
---|
22 | size_t tw_read(SSL* ssl, int s, void* data, size_t len);
|
---|
23 | size_t tw_write(SSL* ssl, int s, void* data, size_t len);
|
---|
24 | #else
|
---|
25 | size_t tw_read(void* ssl, int s, void* data, size_t len);
|
---|
26 | size_t tw_write(void* ssl, int s, void* data, size_t len);
|
---|
27 | #endif
|
---|
28 |
|
---|
29 | #ifdef __cplusplus
|
---|
30 | }
|
---|
31 | #endif
|
---|
32 |
|
---|
33 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.