mirror of
https://github.com/sheumann/hush.git
synced 2025-02-08 11:30:54 +00:00
9 lines
194 B
C
9 lines
194 B
C
|
/* socket.h */
|
||
|
#ifndef _SOCKET_H
|
||
|
#define _SOCKET_H
|
||
|
|
||
|
int read_interface(char *interface, int *ifindex, uint32_t *addr, uint8_t *arp);
|
||
|
int listen_socket(uint32_t ip, int port, char *inf);
|
||
|
|
||
|
#endif
|