12 lines
239 B
C
12 lines
239 B
C
#ifndef __DORIS_SERVER_HTTP_H__
|
|
#define __DORIS_SERVER_HTTP_H__
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
int doris_create_listen_socket(int bind_port);
|
|
SSL_CTX *doris_connections_create_ssl_ctx(void);
|
|
void* thread_doris_http_server(void *arg);
|
|
|
|
#endif
|
|
|