]> git.evergreen-ils.org Git - Evergreen.git/blob - OpenSRF/src/libstack/osrf_system.h
70fe6f3fc02899bf59f0cd56765e179972fc15a5
[Evergreen.git] / OpenSRF / src / libstack / osrf_system.h
1 #include "opensrf/transport_client.h"
2 #include "utils.h"
3 #include "logging.h"
4 #include "osrf_config.h"
5
6 #ifndef OSRF_SYSTEM_H
7 #define OSRF_SYSTEM_H
8
9 /** Connects to jabber.  Returns 1 on success, 0 on failure 
10         contextnode is the location in the config file where we collect config info
11 */
12
13 char* osrf_config_context;
14
15 int osrf_system_bootstrap_client( char* config_file, char* contextnode );
16 transport_client* osrf_system_get_transport_client();
17
18 int osrf_system_shutdown(); 
19
20
21 #endif