working http request

This commit is contained in:
2016-04-22 15:48:01 +02:00
parent 8850f7b094
commit cd93a0891e
9 changed files with 762 additions and 21 deletions
+1
View File
@@ -22,6 +22,7 @@ typedef RtosConnType* ConnTypePtr;
#define streq(a, b) (strcmp(a, b) == 0)
#define strneq(a, b, n) (strncmp(a, b, n) == 0)
#define strstarts(a, b) (strncmp(a, b, (int)strlen(b)) == 0)
#define malloc(x) os_malloc(x)
#define free(x) os_free(x)