Add missing header.
[bertos.git] / bertos / net / http.h
index 4395f1eef6286e99ac69a20dde94e9f8fddc8a95..fe368c0b25a8050fbf72449c16ee5eee7003984d 100644 (file)
@@ -44,6 +44,7 @@
 #define NET_HTTP_H
 
 #include <lwip/tcpip.h>
+#include <lwip/api.h>
 
 typedef int (*http_handler_t)(struct netconn *client, const char *name, char *revc_buf, size_t revc_len);
 
@@ -59,8 +60,6 @@ typedef struct HttpCGI
 #define CGI_MATCH_EXT    2  ///< Select item in table if the extention match
 #define CGI_MATCH_NAME   3  ///< Select item in table if the string is content
 
-#define HTTP_MAX_GET_TOKENS  5
-
 int http_getValue(char *tolenized_buf, size_t tolenized_buf_len, const char *key, char *value, size_t len);
 int http_tokenizeGetRequest(char *raw_buf, size_t raw_len);
 void http_getPageName(const char *recv_buf, size_t recv_len, char *page_name, size_t len);