Imported Upstream version 2.7
[ossec-hids.git] / src / config / client-config.h
1 /*   $OSSEC, client-config.h, v0.2, 2005/11/09, Daniel B. Cid$   */
2
3 /* Copyright (C) 2009 Trend Micro Inc.
4  * All rights reserved.
5  *
6  * This program is a free software; you can redistribute it
7  * and/or modify it under the terms of the GNU General Public
8  * License (version 2) as published by the FSF - Free Software
9  * Foundation
10  */
11
12
13 #ifndef __CAGENTD_H
14
15 #define __CAGENTD_H
16
17 /* Configuration structure */
18 typedef struct _agent
19 {
20     int port;
21     int m_queue;
22     int sock;
23     int execdq;
24     int rip_id;
25     char *lip;
26     char **rip; /* remote (server) ip */
27     char *profile;
28 }agent;
29
30
31 #endif
32
33
34 /* EOF */