mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 01:30:47 -04:00
19 lines
278 B
C
19 lines
278 B
C
|
|
/*
|
|
* Copyright (C) 2012 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*
|
|
* $Id$
|
|
*/
|
|
#include "ipf.h"
|
|
|
|
|
|
char thishost[MAXHOSTNAMELEN];
|
|
|
|
|
|
void initparse(void)
|
|
{
|
|
gethostname(thishost, sizeof(thishost));
|
|
thishost[sizeof(thishost) - 1] = '\0';
|
|
}
|