mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 12:09:58 +00:00
5a61cb60d6
* qemu-common.h is not a system include file, so it should be included with "" instead of <>. Otherwise incremental builds might fail because only local include files are checked for changes. * linux-user/syscall.c included the file twice. Cc: Riku Voipio <riku.voipio@iki.fi> Cc: Jan Kiszka <jan.kiszka@siemens.com> Acked-by: Kevin Wolf <kwolf@redhat.com> Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
57 lines
2.0 KiB
C
57 lines
2.0 KiB
C
#ifndef _LIBSLIRP_H
|
|
#define _LIBSLIRP_H
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#ifdef CONFIG_SLIRP
|
|
|
|
struct Slirp;
|
|
typedef struct Slirp Slirp;
|
|
|
|
int get_dns_addr(struct in_addr *pdns_addr);
|
|
|
|
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);
|
|
void slirp_cleanup(Slirp *slirp);
|
|
|
|
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,
|
|
int select_error);
|
|
|
|
void slirp_input(Slirp *slirp, const uint8_t *pkt, int pkt_len);
|
|
|
|
/* you must provide the following functions: */
|
|
int slirp_can_output(void *opaque);
|
|
void slirp_output(void *opaque, const uint8_t *pkt, int pkt_len);
|
|
|
|
int slirp_add_hostfwd(Slirp *slirp, int is_udp,
|
|
struct in_addr host_addr, int host_port,
|
|
struct in_addr guest_addr, int guest_port);
|
|
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,
|
|
struct in_addr *guest_addr, int guest_port);
|
|
|
|
void slirp_connection_info(Slirp *slirp, Monitor *mon);
|
|
|
|
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);
|
|
|
|
#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 */
|
|
|
|
#endif
|