mirror of
https://github.com/sheumann/hush.git
synced 2025-02-07 04:31:22 +00:00
9 lines
205 B
C
9 lines
205 B
C
|
/* socket.h */
|
||
|
#ifndef _SOCKET_H
|
||
|
#define _SOCKET_H
|
||
|
|
||
|
int read_interface(char *interface, int *ifindex, u_int32_t *addr, unsigned char *arp);
|
||
|
int listen_socket(unsigned int ip, int port, char *inf);
|
||
|
|
||
|
#endif
|