xref: /freebsd/sbin/ipf/libipf/initparse.c (revision 2a63c3be158216222d89a073dcbd6a72ee4aab5a)
1*41edb306SCy Schubert 
2*41edb306SCy Schubert /*
3*41edb306SCy Schubert  * Copyright (C) 2012 by Darren Reed.
4*41edb306SCy Schubert  *
5*41edb306SCy Schubert  * See the IPFILTER.LICENCE file for details on licencing.
6*41edb306SCy Schubert  *
7*41edb306SCy Schubert  * $Id$
8*41edb306SCy Schubert  */
9*41edb306SCy Schubert #include "ipf.h"
10*41edb306SCy Schubert 
11*41edb306SCy Schubert 
12*41edb306SCy Schubert char	thishost[MAXHOSTNAMELEN];
13*41edb306SCy Schubert 
14*41edb306SCy Schubert 
initparse(void)15*41edb306SCy Schubert void initparse(void)
16*41edb306SCy Schubert {
17*41edb306SCy Schubert 	gethostname(thishost, sizeof(thishost));
18*41edb306SCy Schubert 	thishost[sizeof(thishost) - 1] = '\0';
19*41edb306SCy Schubert }
20