natd.h revision 50476
1171626Scognet/*
2171626Scognet * natd - Network Address Translation Daemon for FreeBSD.
3171626Scognet *
4171626Scognet * This software is provided free of charge, with no
5171626Scognet * warranty of any kind, either expressed or implied.
6171626Scognet * Use at your own risk.
7171626Scognet *
8171626Scognet * You may copy, modify and distribute this software (natd.h) freely.
9171626Scognet *
10171626Scognet * Ari Suutari <suutari@iki.fi>
11171626Scognet *
12171626Scognet * $FreeBSD: head/sbin/natd/natd.h 50476 1999-08-28 00:22:10Z peter $
13171626Scognet */
14171626Scognet
15171626Scognet#define PIDFILE	"/var/run/natd.pid"
16171626Scognet#define	INPUT		1
17171626Scognet#define	OUTPUT		2
18171626Scognet#define	DONT_KNOW	3
19171626Scognet
20171626Scognetextern void Quit (const char* msg);
21171626Scognetextern void Warn (const char* msg);
22171626Scognetextern int SendNeedFragIcmp (int sock, struct ip* failedDgram, int mtu);
23171626Scognet
24171626Scognet
25171626Scognet