summaryrefslogtreecommitdiffstats
path: root/src/afb-hreq.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2016-04-01 16:20:12 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2016-04-01 16:20:12 +0200
commitbbe18a624f4961165cf52d7f4c25de6f3a7ec012 (patch)
tree8167fa621fbcdcd91e11988ce6d8c9cf4072fc48 /src/afb-hreq.h
parentc95f72616f59a317f72c58c0e5664992504a48e5 (diff)
work in progress
Change-Id: I3df95def03bb26ca4d1a52f7cd94b0fb67375d4c Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-hreq.h')
-rw-r--r--src/afb-hreq.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/afb-hreq.h b/src/afb-hreq.h
index 01409a58..fb914f13 100644
--- a/src/afb-hreq.h
+++ b/src/afb-hreq.h
@@ -15,9 +15,10 @@
* limitations under the License.
*/
+struct AFB_session;
struct afb_hreq {
- AFB_session *session;
+ struct AFB_session *session;
struct MHD_Connection *connection;
enum afb_method method;
const char *version;
@@ -60,5 +61,3 @@ extern struct afb_req afb_hreq_to_req(struct afb_hreq *hreq);
extern void afb_hreq_drop_data(struct afb_hreq *hreq);
-extern void afb_hreq_iterate_arguments(struct afb_hreq *hreq, int (*iterator)(void *closure, const char *key, const char *value, int isfile), void *closure);
-