mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-05 09:14:03 +00:00
59a7c61374
- Transparent proxy support. - PERMANENT_LINK IS NOW OBSOLETE, use redirect_port instead. - Drop support for early FreeBSD 2.2 versions - If separate input & output sockets are being used use them to find out packet direction instead of normal mechanism. This can be handy in complex environments with multiple interfaces. - PPTP redirect support by Dru Nelson <dnelson@redwoodsoft.com> added. - Logging enhancements from Martin Machacek <mm@i.cz> added. Obtained from: Ari Suutari <ari@suutari.iki.fi>
25 lines
550 B
C
25 lines
550 B
C
/*
|
|
* 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:$
|
|
*/
|
|
|
|
#define PIDFILE "/var/run/natd.pid"
|
|
#define INPUT 1
|
|
#define OUTPUT 2
|
|
#define DONT_KNOW 3
|
|
|
|
extern void Quit (char* msg);
|
|
extern void Warn (char* msg);
|
|
extern int SendNeedFragIcmp (int sock, struct ip* failedDgram, int mtu);
|
|
|
|
|