/* | |
* Copyright (C) 2000-2002 by Darren Reed. | |
* | |
* See the IPFILTER.LICENCE file for details on licencing. | |
* | |
* $Id$ | |
*/ | |
#include "ipf.h" | |
char thishost[MAXHOSTNAMELEN]; | |
void initparse __P((void)) | |
{ | |
gethostname(thishost, sizeof(thishost)); | |
thishost[sizeof(thishost) - 1] = '\0'; | |
} |