1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
* JSON web bridge for PMAPI.
*
* Copyright (c) 2011-2013 Red Hat Inc.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "pmapi.h"
#include "impl.h"
#include <assert.h>
#include <sys/stat.h>
#include <time.h>
#include <stdarg.h>
#include <microhttpd.h>
/* ------------------------------------------------------------------------ */
extern const char uriprefix[];
extern char *archivesdir; /* set by -A option */
extern char *resourcedir; /* set by -R option */
extern unsigned verbosity; /* set by -v option */
extern unsigned maxtimeout; /* set by -t option */
extern unsigned new_contexts_p; /* set by -N option */
extern unsigned exit_p; /* counted by SIG* handler */
/* ------------------------------------------------------------------------ */
extern int pmwebapi_bind_permanent (int webapi_ctx, int pcp_context);
extern int pmwebapi_respond (void *cls, struct MHD_Connection *connection,
const char* url, const char* method,
const char* upload_data, size_t *upload_data_size);
extern unsigned pmwebapi_gc (void);
extern void pmwebapi_deallocate_all (void);
extern int pmwebres_respond (void *cls, struct MHD_Connection *connection,
const char* url);
extern void pmweb_notify (int, struct MHD_Connection*, const char *, ...) __PM_PRINTFLIKE(3,4);
extern void pmweb_start_daemon (int, char **);
|