Remove unneeded prototypes using sockaddr_in

This commit is contained in:
Lassi Kortela 2019-08-10 00:16:30 +03:00
parent e9d6ca265c
commit 3751d83390
1 changed files with 0 additions and 2 deletions

View File

@ -16,8 +16,6 @@ int open_tcp_port(short portno);
int open_any_tcp_port(short *portno); int open_any_tcp_port(short *portno);
int open_any_udp_port(short *portno); int open_any_udp_port(short *portno);
int connect_to_host(char *hostname, short portno); int connect_to_host(char *hostname, short portno);
int connect_to_addr(struct sockaddr_in *host_addr);
int sendall(int sockfd, char *buffer, int bufLen, int flags); int sendall(int sockfd, char *buffer, int bufLen, int flags);
int readall(int sockfd, char *buffer, int bufLen, int flags); int readall(int sockfd, char *buffer, int bufLen, int flags);
int addr_eq(struct sockaddr_in *a, struct sockaddr_in *b);
int socket_ready(int sock); int socket_ready(int sock);