1 #ifndef UOSOCK_H
2 #define UOSOCK_H
3 
4 #include <sys/socket.h>
5 
6 #ifndef P__
7 #define P__(x) x
8 #endif
9 
10 int uosock_connect P__((struct sockaddr_in *target, int timeout));
11 int parse_ip_port(const char *input, struct in_addr *ina, unsigned short *port, const char *proto);
12 
13 
14 #endif
15