]> git.proxmox.com Git - qemu.git/blob - slirp/libslirp.h
slirp: Rework external configuration interface
[qemu.git] / slirp / libslirp.h
1 #ifndef _LIBSLIRP_H
2 #define _LIBSLIRP_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 void slirp_init(int restricted, struct in_addr vnetwork,
9 struct in_addr vnetmask, struct in_addr vhost,
10 const char *vhostname, const char *tftp_path,
11 const char *bootfile, struct in_addr vdhcp_start,
12 struct in_addr vnameserver);
13
14 void slirp_select_fill(int *pnfds,
15 fd_set *readfds, fd_set *writefds, fd_set *xfds);
16
17 void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds);
18
19 void slirp_input(const uint8_t *pkt, int pkt_len);
20
21 /* you must provide the following functions: */
22 int slirp_can_output(void);
23 void slirp_output(const uint8_t *pkt, int pkt_len);
24
25 int slirp_add_hostfwd(int is_udp, int host_port,
26 struct in_addr guest_addr, int guest_port);
27 int slirp_remove_hostfwd(int is_udp, int host_port);
28
29 int slirp_add_exec(int do_pty, const void *args, struct in_addr guest_addr,
30 int guest_port);
31
32 void slirp_stats(void);
33 void slirp_socket_recv(struct in_addr guest_addr, int guest_port,
34 const uint8_t *buf, int size);
35 size_t slirp_socket_can_recv(struct in_addr guest_addr, int guest_port);
36
37 #ifdef __cplusplus
38 }
39 #endif
40
41 #endif