/* * 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 #include #include #include #include /* ------------------------------------------------------------------------ */ 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 **);