blob: 58bb018381a1c6e8869366841ee62044cf6d22f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SERVER_UDP_H
#define SERVER_UDP_H
#include "server.h"
#include "udp.h"
extern client_t* newUdpClient(sock_udp_t *sock_udp);
extern void destroyUdpClient(client_t *p);
extern int initUdpServer(char *ip, int port, int proto);
extern void eventUdpServer();
extern void quitUdpServer();
#endif
|