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