9 lines
164 B
C
9 lines
164 B
C
|
|
#ifndef __DORIS_SERVER_HTTP_H__
|
||
|
|
#define __DORIS_SERVER_HTTP_H__
|
||
|
|
|
||
|
|
int doris_create_listen_socket(int bind_port);
|
||
|
|
void* thread_doris_http_server(void *arg);
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|