99 lines
2.1 KiB
Plaintext
99 lines
2.1 KiB
Plaintext
*#ident "$Revision: 2.39 $"
|
|
*
|
|
* BSD: Berkeley Network Services
|
|
*
|
|
*FLAG PREFIX SOFT #DEV DEPENDENCIES
|
|
ox bsd - -
|
|
bsd_init(){}
|
|
getdtablesize(){nopkg}
|
|
gethostname(){nopkg}
|
|
sethostname(){nopkg}
|
|
getdomainname(){nopkg}
|
|
setdomainname(){nopkg}
|
|
$$$$
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/mbuf.h>
|
|
|
|
/*
|
|
* Many of the parameters defined in this file prior to IRIX 6.5 have been made
|
|
* made tuneable; see the man page for systune(1M) for details.
|
|
*
|
|
* The parameters defined in this file are not normally expected to be changed.
|
|
*/
|
|
|
|
/*
|
|
* If not zero, limit the maximum ethernet packet size to this
|
|
*/
|
|
int maxethermtu = 0;
|
|
|
|
/*
|
|
* Debugging:
|
|
* 1 = print debugging messages on the console.
|
|
* 0 = don't print any messages.
|
|
*/
|
|
int icmpprintfs = 0;
|
|
int ipprintfs = 0;
|
|
int tcpprintfs = 0;
|
|
|
|
/* Use loopback interface for local traffic */
|
|
int useloopback = 1;
|
|
|
|
/* loopback interface MTU */
|
|
int lomtu = MLEN + (2 * _PAGESZ);
|
|
|
|
/* TCP large windows (RFC 1323) control. */
|
|
int tcp_winscale = 1;
|
|
int tcp_tsecho = 1;
|
|
|
|
/* TCP MTU Discovery, table of typical MTUs. If TCP isn't told the
|
|
* MTU of the far side of the complaining router, it will pick the
|
|
* next smaller value from this table. It contains typical MTUs
|
|
* you might encounter. This is from Table 7-1 in RFC 1191.
|
|
*
|
|
* Warning: this list must be in descending order and must be
|
|
* terminated with a zero.
|
|
*/
|
|
int tcp_mtutable[] = {
|
|
65535,
|
|
65280, /* HIPPI */
|
|
32768,
|
|
17914,
|
|
9180, /* ATM */
|
|
8166, /* 802.4 */
|
|
4352, /* FDDI */
|
|
2002,
|
|
1492, /* Ethernet/802.3 */
|
|
1006, /* Arpanet */
|
|
508,
|
|
0 /* ZERO MUST TERMINATE THIS LIST! */ };
|
|
|
|
/*
|
|
* Flush some of the mbuf cache every mbtimeout seconds.
|
|
*/
|
|
int mbtimeout = 600;
|
|
|
|
/*
|
|
* Receive side page flip:
|
|
* 0 => do it
|
|
* 1 => fail in fault.c
|
|
* 2 => fail immediately in the m_flip procedure
|
|
*/
|
|
int m_flip_off = 0;
|
|
|
|
/*
|
|
* Send side Copy On Write:
|
|
* 0 => do it
|
|
* 1 => fail immediately
|
|
*/
|
|
int m_shget_off = 0;
|
|
|
|
/*
|
|
* Use the trusted networking session manager protocols to
|
|
* modulate subject attributes between network endpoints.
|
|
* Should not be enabled unless Trusted Irix is installed.
|
|
* 1 = enabled
|
|
* 0 = disabled
|
|
*/
|
|
int sesmgr_enabled = 0;
|