~ubuntu-dev/ubuntu/lucid/zabbix/lucid-201002110857

« back to all changes in this revision

Viewing changes to src/zabbix_proxy/servercomms.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Ablassmeier
  • Date: 2008-11-27 16:44:15 UTC
  • mfrom: (1.1.8 upstream) (8.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20081127164415-f0vl8ow4redvpg0c
Tags: 1:1.6.1-3
remove versioned depends on postgreql-8.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
** ZABBIX
 
3
** Copyright (C) 2000-2005 SIA Zabbix
 
4
**
 
5
** This program is free software; you can redistribute it and/or modify
 
6
** it under the terms of the GNU General Public License as published by
 
7
** the Free Software Foundation; either version 2 of the License, or
 
8
** (at your option) any later version.
 
9
**
 
10
** This program is distributed in the hope that it will be useful,
 
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
** GNU General Public License for more details.
 
14
**
 
15
** You should have received a copy of the GNU General Public License
 
16
** along with this program; if not, write to the Free Software
 
17
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
**/
 
19
 
 
20
#ifndef ZABBIX_SERVERCOMMS_H
 
21
#define ZABBIX_SERVERCOMMS_H
 
22
 
 
23
extern char     *CONFIG_SOURCE_IP;
 
24
extern char     *CONFIG_SERVER;
 
25
extern int      CONFIG_SERVER_PORT;
 
26
extern char     *CONFIG_HOSTNAME;
 
27
 
 
28
#include "comms.h"
 
29
 
 
30
int     connect_to_server(zbx_sock_t *sock, int timeout);
 
31
void    disconnect_server(zbx_sock_t *sock);
 
32
 
 
33
int     get_data_from_server(zbx_sock_t *sock, const char *request, char **data);
 
34
int     put_data_to_server(zbx_sock_t *sock, struct zbx_json *j);
 
35
 
 
36
#endif