diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-09 01:27:23 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-09 01:27:23 +0100 |
commit | b55efc33fb8df8b0518570b2584b6da9abb3221b (patch) | |
tree | ef09396c903355a7d61d57e029f13af90f3ffa3e /include | |
parent | 6458b6eb67426974e9a3b8eed1f5620f0de0efc5 (diff) |
Added POST, Plugin API signal protection, refactor HTML5 rewrite
Diffstat (limited to 'include')
-rw-r--r-- | include/local-def.h | 10 | ||||
-rw-r--r-- | include/proto-def.h | 10 |
2 files changed, 16 insertions, 4 deletions
diff --git a/include/local-def.h b/include/local-def.h index 3f0a26a0..72c51dea 100644 --- a/include/local-def.h +++ b/include/local-def.h @@ -40,6 +40,10 @@ /* other definitions --------------------------------------------------- */ +// Note: because of a bug in libmagic MAGIC_DB NULL should not be used for default +#define MAGIC_DB "/usr/share/misc/magic.mgc" +#define OPA_INDEX "index.html" + typedef int BOOL; #ifndef FALSE #define FALSE 0 @@ -97,8 +101,8 @@ typedef struct { } AFB_request; typedef struct { - char *msg; - int len; + char *msg; + size_t len; } AFB_redirect_msg; // main config structure @@ -117,6 +121,7 @@ typedef struct { char *configfile; // where to store configuration on gateway exit uid_t setuid; int cacheTimeout; + int apiTimeout; } AFB_config; // Command line structure hold cli --command + help text @@ -134,6 +139,7 @@ typedef struct { char *name; AFB_apiCB callback; char *info; + void * handle; } AFB_restapi; // Plugin definition diff --git a/include/proto-def.h b/include/proto-def.h index d1b0c3fb..3e1d1c38 100644 --- a/include/proto-def.h +++ b/include/proto-def.h @@ -21,9 +21,15 @@ */ // Rest-api -PUBLIC json_object* pingSample (AFB_plugin *plugin, AFB_session *session, AFB_request *post); + +PUBLIC json_object* apiPingTest(AFB_session *session, AFB_request *request, void* handle); PUBLIC const char* getQueryValue (AFB_request * request, char *name); -PUBLIC int doRestApi(struct MHD_Connection *connection, AFB_session *session, const char *method, const char* url); +PUBLIC const char* getQueryAll(AFB_request * request, char *query, size_t len); + + +PUBLIC int doRestApi(struct MHD_Connection *connection, AFB_session *session, const char* url, const char *method + , const char *upload_data, size_t *upload_data_size, void **con_cls); + void initPlugins (AFB_session *session); typedef AFB_plugin* (*AFB_pluginCB)(AFB_session *session); |