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>
|
2004-08-26 06:12:49 +08:00
|
|
|
int inet_aton(const char *cp, struct in_addr *ia);
|
2004-07-13 06:33:07 +08:00
|
|
|
#else
|
2004-04-22 08:10:48 +08:00
|
|
|
#include <sys/select.h>
|
2004-08-26 06:12:49 +08:00
|
|
|
#include <arpa/inet.h>
|
2004-07-13 06:33:07 +08:00
|
|
|
#endif
|
2004-04-22 08:10:48 +08:00
|
|
|
|
2005-06-06 01:11:42 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#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);
|
|
|
|
|
2004-08-26 06:12:49 +08:00
|
|
|
int slirp_redir(int is_udp, int host_port,
|
|
|
|
struct in_addr guest_addr, int guest_port);
|
2004-09-06 07:10:26 +08:00
|
|
|
int slirp_add_exec(int do_pty, const char *args, int addr_low_byte,
|
|
|
|
int guest_port);
|
2004-08-26 06:12:49 +08:00
|
|
|
|
|
|
|
extern const char *tftp_prefix;
|
2006-04-16 19:06:58 +08:00
|
|
|
extern const char slirp_hostname[33];
|
2004-08-26 06:12:49 +08:00
|
|
|
|
2005-06-06 01:11:42 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-04-22 08:10:48 +08:00
|
|
|
#endif
|