Correct unsafe use of realloc().
[dragonfly.git] / sbin / natd / natd.h
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: src/sbin/natd/natd.h,v 1.4 1999/08/28 00:13:46 peter Exp $
13  * $DragonFly: src/sbin/natd/natd.h,v 1.2 2003/06/17 04:27:34 dillon Exp $
14  */
15
16 #define PIDFILE "/var/run/natd.pid"
17 #define INPUT           1
18 #define OUTPUT          2
19 #define DONT_KNOW       3
20
21 extern void Quit (const char* msg);
22 extern void Warn (const char* msg);
23 extern int SendNeedFragIcmp (int sock, struct ip* failedDgram, int mtu);
24
25