2004-04-22 04:10:48 +04:00
|
|
|
#ifndef _LIBSLIRP_H
|
|
|
|
#define _LIBSLIRP_H
|
|
|
|
|
2009-06-24 16:42:29 +04:00
|
|
|
#include <qemu-common.h>
|
|
|
|
|
2009-06-24 16:42:30 +04:00
|
|
|
#ifdef CONFIG_SLIRP
|
|
|
|
|
2009-06-24 16:42:28 +04:00
|
|
|
void slirp_init(int restricted, struct in_addr vnetwork,
|
|
|
|
struct in_addr vnetmask, struct in_addr vhost,
|
|
|
|
const char *vhostname, const char *tftp_path,
|
|
|
|
const char *bootfile, struct in_addr vdhcp_start,
|
|
|
|
struct in_addr vnameserver);
|
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);
|
|
|
|
|
2009-06-24 16:42:30 +04:00
|
|
|
void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds,
|
|
|
|
int select_error);
|
2004-04-22 04:10:48 +04:00
|
|
|
|
|
|
|
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-06-24 16:42:28 +04:00
|
|
|
int slirp_add_hostfwd(int is_udp, struct in_addr host_addr, int host_port,
|
2009-06-24 16:42:28 +04:00
|
|
|
struct in_addr guest_addr, int guest_port);
|
2009-06-24 16:42:28 +04:00
|
|
|
int slirp_remove_hostfwd(int is_udp, struct in_addr host_addr, int host_port);
|
2009-06-24 16:42:28 +04:00
|
|
|
int slirp_add_exec(int do_pty, const void *args, struct in_addr guest_addr,
|
|
|
|
int guest_port);
|
2004-08-26 02:12:49 +04:00
|
|
|
|
2009-06-24 16:42:29 +04:00
|
|
|
void slirp_connection_info(Monitor *mon);
|
|
|
|
|
2009-06-24 16:42:28 +04:00
|
|
|
void slirp_socket_recv(struct in_addr guest_addr, int guest_port,
|
|
|
|
const uint8_t *buf, int size);
|
|
|
|
size_t slirp_socket_can_recv(struct in_addr guest_addr, int guest_port);
|
2007-10-26 22:42:59 +04:00
|
|
|
|
2009-06-24 16:42:30 +04:00
|
|
|
#else /* !CONFIG_SLIRP */
|
|
|
|
|
|
|
|
static inline void slirp_select_fill(int *pnfds, fd_set *readfds,
|
|
|
|
fd_set *writefds, fd_set *xfds) { }
|
|
|
|
|
|
|
|
static inline void slirp_select_poll(fd_set *readfds, fd_set *writefds,
|
|
|
|
fd_set *xfds, int select_error) { }
|
|
|
|
#endif /* !CONFIG_SLIRP */
|
|
|
|
|
2004-04-22 04:10:48 +04:00
|
|
|
#endif
|