X-Git-Url: https://git.wpitchoune.net/gitweb/?p=prss.git;a=blobdiff_plain;f=src%2Fhttp.h;h=985187d3b75d762622c421a5998905c1eab9b83f;hp=91ffcc2dc8b2304abdd01260a41882cace4818dd;hb=5bb795e97e53ef92cb7b28ee3598ad2aa4ec65d3;hpb=47231117238180500e22522eb470530bad381dd1 diff --git a/src/http.h b/src/http.h index 91ffcc2..985187d 100644 --- a/src/http.h +++ b/src/http.h @@ -20,8 +20,15 @@ #ifndef _PRSS_HTTP_H_ #define _PRSS_HTTP_H_ -void http_init(); -json_object *get_json_object(const char *url); -json_object *post_json_object(const char *url, struct json_object *); +#include +#include + +struct http_session; + +struct http_session *http_session_new(); +void http_session_free(struct http_session *); + +json_object * +http_json_get(struct http_session *, const char *, struct json_object *); #endif