new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / config / client-config.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 __CAGENTD_H
11 #define __CAGENTD_H
12
13 /* Configuration structure */
14 typedef struct _agent {
15     char *port;
16     int m_queue;
17     int sock;
18     int execdq;
19     int rip_id;
20     char *lip;
21     char **rip; /* remote (server) IP */
22     int notify_time;
23     int max_time_reconnect_try;
24     char *profile;
25 } agent;
26
27 #endif /* __CAGENTD_H */
28