* coroutines
 * string
modified:
 * http: fixed a couple of bugs
 * strutils: renamed to os, it is now a header for some generic platform-indipendent code
 * tracelog: added option to not print newline at the end of a message + bug fixes
This commit is contained in:
snarmph 2021-10-05 17:57:27 +02:00
parent d8b44c1281
commit bb5cce33f0
15 changed files with 523 additions and 76 deletions

6
http.h
View file

@ -75,7 +75,7 @@ typedef struct {
char *body;
} http_request_t;
http_request_t reqInit();
http_request_t reqInit(void);
void reqFree(http_request_t *ctx);
bool reqHasField(http_request_t *ctx, const char *key);
@ -96,7 +96,7 @@ typedef struct {
char *body;
} http_response_t;
http_response_t resInit();
http_response_t resInit(void);
void resFree(http_response_t *ctx);
bool resHasField(http_response_t *ctx, const char *key);
@ -113,7 +113,7 @@ typedef struct {
socket_t socket;
} http_client_t;
http_client_t hcliInit();
http_client_t hcliInit(void);
void hcliFree(http_client_t *ctx);
void hcliSetHost(http_client_t *ctx, const char *hostname);