dfc71f8ae4
is almost a port of the Qemu 1.1.2 implementation. It has been tested successfully on Linux and Windows (MinGW/MSYS). The networking module is currently called "slirp_new", since the "slirp" backend module still exists. TODO list: - MSVC support (requires container_of() macro replacement) - apply fixes and improvements from recent Qemu releases - use our TFTP implementation to reduce code duplication - check if we can share ARP and DHCP support with "vnet" - add SMB support on Linux - finally remove the slirp backend module support
45 lines
1.6 KiB
C
45 lines
1.6 KiB
C
#ifndef _LIBSLIRP_H
|
|
#define _LIBSLIRP_H
|
|
|
|
#include "compat.h"
|
|
|
|
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_update_timeout(uint32_t *timeout);
|
|
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_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);
|
|
|
|
#endif
|