mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
363 B
C
19 lines
363 B
C
16 years ago
|
/**
|
||
|
* Copyright (c) 2009 Open Information Security Foundation
|
||
|
*
|
||
|
* \file util-daemon.h
|
||
|
* \author Gerardo Iglesias Galvan <iglesiasg@gmail.com>
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __UTIL_DAEMON_H__
|
||
|
#define __UTIL_DAEMON_H__
|
||
|
|
||
|
/** \todo Adjust path */
|
||
|
#define DAEMON_WORKING_DIRECTORY "/"
|
||
|
|
||
|
int CheckValidDaemonModes (int, int);
|
||
|
void Daemonize (void);
|
||
|
|
||
|
#endif /* __UTIL_DAEMON_H__ */
|