2004-04-22 04:10:48 +04:00
|
|
|
#ifndef _LIBSLIRP_H
|
|
|
|
#define _LIBSLIRP_H
|
|
|
|
|
2005-06-05 21:11:42 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-01-08 22:24:00 +03:00
|
|
|
void slirp_init(int restrict, char *special_ip);
|
2004-04-22 04:10:48 +04:00
|
|
|
|
2007-09-17 01:08:06 +04:00
|
|
|
void slirp_select_fill(int *pnfds,
|
2004-04-22 04:10:48 +04:00
|
|
|
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);
|
|
|
|
|
2007-09-17 01:08:06 +04:00
|
|
|
int slirp_redir(int is_udp, int host_port,
|
2004-08-26 02:12:49 +04:00
|
|
|
struct in_addr guest_addr, int guest_port);
|
2009-01-08 22:18:21 +03:00
|
|
|
int slirp_add_exec(int do_pty, const void *args, int addr_low_byte,
|
2004-09-06 03:10:26 +04:00
|
|
|
int guest_port);
|
2004-08-26 02:12:49 +04:00
|
|
|
|
|
|
|
extern const char *tftp_prefix;
|
2006-05-01 01:34:15 +04:00
|
|
|
extern char slirp_hostname[33];
|
2004-08-26 02:12:49 +04:00
|
|
|
|
2007-10-26 22:42:59 +04:00
|
|
|
void slirp_stats(void);
|
2009-01-08 22:18:21 +03:00
|
|
|
void slirp_socket_recv(int addr_low_byte, int guest_port, const uint8_t *buf,
|
|
|
|
int size);
|
|
|
|
size_t slirp_socket_can_recv(int addr_low_byte, int guest_port);
|
2007-10-26 22:42:59 +04:00
|
|
|
|
2005-06-05 21:11:42 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-04-22 04:10:48 +04:00
|
|
|
#endif
|