mirror of
https://git.busybox.net/udhcp
synced 2025-05-08 22:09:45 +08:00
9 lines
146 B
C
9 lines
146 B
C
/* socket.h */
|
|
#ifndef _SOCKET_H
|
|
#define _SOCKET_H
|
|
|
|
int listen_socket(unsigned int ip, int port, char *inf);
|
|
int raw_socket(int ifindex);
|
|
|
|
#endif
|