summaryrefslogtreecommitdiff
path: root/include/network.h
blob: a7934eb9b748bad07d7f93fcb384f3beae9cc9e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#ifndef NETWORK_H

#include "main.h"

#define NETWORK_H

extern int newSocket(int port,const char *ip);
extern int getNewClient(int sockfd);
extern int getNewClientIP(int sockfd,char **str_ip);

#endif