2004-04-22 02:10:48 +02:00
|
|
|
#ifndef _LIBSLIRP_H
|
|
|
|
#define _LIBSLIRP_H
|
|
|
|
|
2009-06-24 14:42:29 +02:00
|
|
|
#include <qemu-common.h>
|
|
|
|
|
2009-06-24 14:42:30 +02:00
|
|
|
#ifdef CONFIG_SLIRP
|
|
|
|
|
2009-06-24 14:42:31 +02:00
|
|
|
struct Slirp;
|
|
|
|
typedef struct Slirp Slirp;
|
|
|
|
|
2009-08-21 04:00:31 +02:00
|
|
|
int get_dns_addr(struct in_addr *pdns_addr);
|
|
|
|
|
2009-06-24 14:42:31 +02:00
|
|
|
Slirp *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, void *opaque);
|
2009-06-24 14:42:31 +02:00
|
|
|
void slirp_cleanup(Slirp *slirp);
|
2004-04-22 02:10:48 +02:00
|
|
|
|
2007-09-16 23:08:06 +02:00
|
|
|
void slirp_select_fill(int *pnfds,
|
2004-04-22 02:10:48 +02:00
|
|
|
fd_set *readfds, fd_set *writefds, fd_set *xfds);
|
|
|
|
|
2009-06-24 14:42:30 +02:00
|
|
|
void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds,
|
|
|
|
int select_error);
|
2004-04-22 02:10:48 +02:00
|
|
|
|
2009-06-24 14:42:31 +02:00
|
|
|
void slirp_input(Slirp *slirp, const uint8_t *pkt, int pkt_len);
|
2004-04-22 02:10:48 +02:00
|
|
|
|
|
|
|
/* you must provide the following functions: */
|
2009-06-24 14:42:31 +02:00
|
|
|
int slirp_can_output(void *opaque);
|
|
|
|
void slirp_output(void *opaque, const uint8_t *pkt, int pkt_len);
|
2004-04-22 02:10:48 +02:00
|
|
|
|
2009-06-24 14:42:31 +02:00
|
|
|
int slirp_add_hostfwd(Slirp *slirp, int is_udp,
|
|
|
|
struct in_addr host_addr, int host_port,
|
2009-06-24 14:42:28 +02:00
|
|
|
struct in_addr guest_addr, int guest_port);
|
2009-06-24 14:42:31 +02:00
|
|
|
int slirp_remove_hostfwd(Slirp *slirp, int is_udp,
|
|
|
|
struct in_addr host_addr, int host_port);
|
|
|
|
int slirp_add_exec(Slirp *slirp, int do_pty, const void *args,
|
2009-07-22 17:03:52 +02:00
|
|
|
struct in_addr *guest_addr, int guest_port);
|
2004-08-26 00:12:49 +02:00
|
|
|
|
2009-06-24 14:42:31 +02:00
|
|
|
void slirp_connection_info(Slirp *slirp, Monitor *mon);
|
2009-06-24 14:42:29 +02:00
|
|
|
|
2009-06-24 14:42:31 +02:00
|
|
|
void slirp_socket_recv(Slirp *slirp, struct in_addr guest_addr,
|
|
|
|
int guest_port, const uint8_t *buf, int size);
|
|
|
|
size_t slirp_socket_can_recv(Slirp *slirp, struct in_addr guest_addr,
|
|
|
|
int guest_port);
|
2007-10-26 20:42:59 +02:00
|
|
|
|
2009-06-24 14:42:30 +02: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 02:10:48 +02:00
|
|
|
#endif
|