new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / agentlessd / agentlessd.h
1 /* Copyright (C) 2009 Trend Micro Inc.
2  * All rights reserved.
3  *
4  * This program is a free software; you can redistribute it
5  * and/or modify it under the terms of the GNU General Public
6  * License (version 2) as published by the FSF - Free Software
7  * Foundation
8  */
9
10 #ifndef _AGENTLESSD_H
11 #define _AGENTLESSD_H
12
13 #include "config/agentlessd-config.h"
14
15 #ifndef ARGV0
16 #define ARGV0 "ossec-agentlessd"
17 #endif
18
19 /** Prototypes **/
20
21 /* Main monitord */
22 void Agentlessd(void) __attribute__((noreturn));
23
24 /* Global variables */
25 extern agentlessd_config lessdc;
26
27 #endif
28