blob: ceff28d795ed3e8074b74c0d9e95e3a5747c80c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __SERVER_MAINLOOP_H__
#define __SERVER_MAINLOOP_H__
#include <stdint.h>
/* TODO: Prefix functions with svr */
#define SERVER_READ 0x01
#define SERVER_WRITE 0x02
typedef void (*server_socket_callback)(int fd, int type, void* arg);
/* TODO: We should declare our own time type: 'mstime' */
typedef int (*server_timer_callback)(uint64_t when, void* arg);
void server_init();
void server_uninit();
int server_run();
void server_stop();
int server_stopped();
int server_watch(int fd, int type, server_socket_callback callback, void* arg);
void server_unwatch(int fd);
int server_timer(int length, server_timer_callback callback, void* arg);
int server_oneshot(int length, server_timer_callback callback, void* arg);
uint64_t server_get_time();
#endif /* __SERVER_MAINLOOP_H__ */
|