blob: a23e38a3960ce3160988a5d6298e75224b23a915 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* natd - Network Address Translation Daemon for FreeBSD.
*
* This software is provided free of charge, with no
* warranty of any kind, either expressed or implied.
* Use at your own risk.
*
* You may copy, modify and distribute this software (natd.h) freely.
*
* Ari Suutari <suutari@iki.fi>
*
* $Id: natd.h,v 1.2 1999/03/07 18:23:56 brian Exp $
*/
#define PIDFILE "/var/run/natd.pid"
#define INPUT 1
#define OUTPUT 2
#define DONT_KNOW 3
extern void Quit (const char* msg);
extern void Warn (const char* msg);
extern int SendNeedFragIcmp (int sock, struct ip* failedDgram, int mtu);
|