f62c8f158f
- added support for a separate slirp config file specified with the "script" parameter. Added sample config in the "misc" subdirectory. - now creating one logfunctions object per slirp instance and added new function slirp_warning() to send error messages to the Bochs log. - regenerated dependencies for the iodev/network Makefile and updated command line example for generating them.
49 lines
1.8 KiB
C
49 lines
1.8 KiB
C
/////////////////////////////////////////////////////////////////////////
|
|
// $Id$
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
#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, const char **vdnssearch,
|
|
void *opaque, void *logfn);
|
|
void slirp_cleanup(Slirp *slirp);
|
|
|
|
void slirp_select_fill(int *pnfds, fd_set *readfds, fd_set *writefds,
|
|
fd_set *xfds, uint32_t *timeout);
|
|
|
|
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
|