don't ignore failed thread creation
[iwhd.git] / proxy.h
blobf44e8840321a4287be1ed2eee1eb02193a6f739e
1 /* Copyright (C) 2010 Red Hat, Inc.
3 This program is free software: you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation, either version 3 of the License, or
6 (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program. If not, see <http://www.gnu.org/licenses/>. */
16 #if !defined(_PROXY_H)
17 #define _PROXY_H
19 #include "backend.h"
21 typedef struct _provider {
22 int index;
23 const char *name;
24 const char *type;
25 const char *host;
26 int port;
27 const char *username;
28 const char *password;
29 const char *path;
30 backend_func_tbl *func_tbl;
31 } provider_t;
33 char *parse_config (void);
34 void repl_init (void);
35 void replicate (const char *url, size_t size,
36 const char *policy);
37 void replicate_delete (const char *url);
38 void replicate_bcreate (const char *bucket);
39 int get_provider (int i, provider_t *out);
40 void update_provider (const char *provider,
41 const char *username, const char *password);
42 char *get_provider_value (int i, const char *fname);
44 #endif