10 lines
165 B
C
10 lines
165 B
C
#ifndef _CONNECTION_H_
|
|
#define _CONNECTION_H_
|
|
|
|
#define CON_NORMAL 0x01
|
|
#define CON_ADMIN 0x02
|
|
|
|
int listen_handler(int fd, void *privdata);
|
|
|
|
#endif // _CONNECTION_H_
|