Statistics
| Branch: | Revision:

root / slirp / libslirp.h @ c1261d8d

History | View | Annotate | Download (1 kB)

1
#ifndef _LIBSLIRP_H
2
#define _LIBSLIRP_H
3

    
4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7

    
8
void slirp_init(int restricted, char *special_ip);
9

    
10
void slirp_select_fill(int *pnfds,
11
                       fd_set *readfds, fd_set *writefds, fd_set *xfds);
12

    
13
void slirp_select_poll(fd_set *readfds, fd_set *writefds, fd_set *xfds);
14

    
15
void slirp_input(const uint8_t *pkt, int pkt_len);
16

    
17
/* you must provide the following functions: */
18
int slirp_can_output(void);
19
void slirp_output(const uint8_t *pkt, int pkt_len);
20

    
21
int slirp_redir_rm(int is_udp, int host_port);
22
int slirp_redir(int is_udp, int host_port,
23
                struct in_addr guest_addr, int guest_port);
24
int slirp_add_exec(int do_pty, const void *args, int addr_low_byte,
25
                   int guest_port);
26

    
27
extern const char *tftp_prefix;
28
extern char slirp_hostname[33];
29
extern const char *bootp_filename;
30

    
31
void slirp_stats(void);
32
void slirp_socket_recv(int addr_low_byte, int guest_port, const uint8_t *buf,
33
                int size);
34
size_t slirp_socket_can_recv(int addr_low_byte, int guest_port);
35

    
36
#ifdef __cplusplus
37
}
38
#endif
39

    
40
#endif