159a7c613SBrian Somers /* 259a7c613SBrian Somers * natd - Network Address Translation Daemon for FreeBSD. 359a7c613SBrian Somers * 459a7c613SBrian Somers * This software is provided free of charge, with no 559a7c613SBrian Somers * warranty of any kind, either expressed or implied. 659a7c613SBrian Somers * Use at your own risk. 759a7c613SBrian Somers * 859a7c613SBrian Somers * You may copy, modify and distribute this software (natd.h) freely. 959a7c613SBrian Somers * 1059a7c613SBrian Somers * Ari Suutari <suutari@iki.fi> 1159a7c613SBrian Somers * 127bafbf7bSBrian Somers * $Id: natd.h,v 1.2 1999/03/07 18:23:56 brian Exp $ 1359a7c613SBrian Somers */ 1459a7c613SBrian Somers 1524084f9bSBrian Somers #define PIDFILE "/var/run/natd.pid" 1659a7c613SBrian Somers #define INPUT 1 1759a7c613SBrian Somers #define OUTPUT 2 1859a7c613SBrian Somers #define DONT_KNOW 3 1924084f9bSBrian Somers 207bafbf7bSBrian Somers extern void Quit (const char* msg); 217bafbf7bSBrian Somers extern void Warn (const char* msg); 2224084f9bSBrian Somers extern int SendNeedFragIcmp (int sock, struct ip* failedDgram, int mtu); 2359a7c613SBrian Somers 2459a7c613SBrian Somers 25