slirp_state.h revision 2e77ff8c095da5ee3bde45932b06d6eff0abb267
/** @file
* NAT state/configuration.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#ifndef _slirp_state_h_
#define _slirp_state_h_
#ifdef VBOX_WITH_SLIRP_ICMP
#include "ip_icmp.h"
#endif
/** Number of DHCP clients supported by NAT. */
#define NB_ADDR 16
/** Where to start DHCP IP number allocation. */
#define START_ADDR 15
/** DHCP Lease time. */
/** Entry in the table of known DHCP clients. */
typedef struct {
bool allocated;
} BOOTPClient;
/** TFTP session entry. */
struct tftp_session {
int in_use;
unsigned char filename[TFTP_FILENAME_MAX];
int timestamp;
};
/** Main state/configuration structure for slirp NAT. */
typedef struct NATState
{
/* Stuff from boot.c */
const char *bootp_filename;
/* Stuff from if.c */
int if_comp;
int if_maxlinkhdr;
int if_queued;
int if_thresh;
/* Stuff from icmp.c */
struct icmpstat_t icmpstat;
/* Stuff from ip_input.c */
#ifndef VBOX_WITH_BSD_REASS
#else /* !VBOX_WITH_BSD_REASS */
int maxnipq; /* Administrative limit on # of reass queues*/
int maxfragsperpacket; /* Maximum number of IPv4 fragments allowed per packet */
int nipq; /* total number of reass queues */
#endif /* VBOX_WITH_BSD_REASS */
/* Stuff from mbuf.c */
int mbuf_alloced, mbuf_max;
int msize;
/* Stuff from slirp.c */
void *pvUser;
bool do_slowtimo;
bool link_up;
struct in_addr alias_addr;
struct in_addr special_addr;
struct in_addr loopback_addr;
char slirp_hostname[33];
bool fPassDomain;
const char *pszDomain;
/* Stuff from tcp_input.c */
struct socket *tcp_last_so;
/* Stuff from tcp_subr.c */
void *apvHash[16384];
#endif /* ARCH_BITS == 64 && !defined(VBOX_WITH_BSD_REASS) */
/* Stuff from tcp_timer.c */
#ifdef VBOX_WITH_BSD_REASS
int tcp_reass_qsize;
int tcp_reass_maxqlen;
int tcp_reass_maxseg;
int tcp_reass_overflows;
#endif /* VBOX_WITH_BSD_REASS */
/* Stuff from tftp.c */
const char *tftp_prefix;
/* Stuff from udp.c */
struct socket *udp_last_so;
#ifdef VBOX_WITH_SLIRP_ICMP
struct socket icmp_socket;
struct icmp_storage icmp_msg_head;
#endif
#if defined(VBOX_WITH_SIMPLIFIED_SLIRP_SYNC) && defined(RT_OS_WINDOWS)
#endif
} NATState;
/** Default IP time to live. */
/** Number of permanent buffers in mbuf. */
#define mbuf_thresh 30
/** Use a fixed time before sending keepalive. */
#define tcp_keepidle TCPTV_KEEP_IDLE
/** Use a fixed interval between keepalive. */
#define tcp_keepintvl TCPTV_KEEPINTVL
/** Maximum idle time before timing out a connection. */
/** Default TCP socket options. */
#define so_options DO_KEEPALIVE
/** Default TCP MSS value. */
#define tcp_mssdflt TCP_MSS
/** Default TCP round trip time. */
/** Enable RFC1323 performance enhancements.
* @todo check if it really works, it was turned off before. */
#define tcp_do_rfc1323 1
/** TCP receive buffer size. */
#define tcp_rcvspace TCP_RCVSPACE
/** TCP receive buffer size. */
#define tcp_sndspace TCP_SNDSPACE
/* TCP duplicate ACK retransmit threshold. */
#define tcprexmtthresh 3
#ifdef VBOX_WITH_BSD_REASS
#else /* ! VBOX_WITH_BSD_REASS */
#if SIZEOF_CHAR_P != 4
/** Hash the pointer, inserting it if need be. */
{
return i;
}
/** Lookup the hash value. */
{
void *pv;
return pv;
}
#endif
#endif
#endif /* !_slirp_state_h_ */