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