2004-04-22 08:10:48 +08:00
|
|
|
#ifndef _LIBSLIRP_H
|
|
|
|
#define _LIBSLIRP_H
|
|
|
|
|
2004-07-13 06:33:07 +08:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <winsock2.h>
|
|
|
|
#else
|
2004-04-22 08:10:48 +08:00
|
|
|
#include <sys/select.h>
|
2004-07-13 06:33:07 +08:00
|
|
|
#endif
|
2004-04-22 08:10:48 +08:00
|
|
|
|
|
|
|
void slirp_init(void);
|
|
|
|
|
|
|
|
void slirp_select_fill(int *pnfds,
|
|
|
|
fd_set *readfds, fd_set *writefds, fd_set *xfds);
|
|
|
|
|
|
|
|
void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds);
|
|
|
|
|
|
|
|
void slirp_input(const uint8_t *pkt, int pkt_len);
|
|
|
|
|
|
|
|
/* you must provide the following functions: */
|
|
|
|
int slirp_can_output(void);
|
|
|
|
void slirp_output(const uint8_t *pkt, int pkt_len);
|
|
|
|
|
|
|
|
#endif
|