X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fhttp.h;h=b03b93b27bc076de20477bd0a0a42e8731b31b71;hb=3c9f76acbd25f6f9d656736cf7b376ef8b4869c1;hp=497012953239ba9a6c4ef54e7067a3b563a83d10;hpb=a5f095a299be545fb8cd817f6e35d53b1fd3fe43;p=bertos.git diff --git a/bertos/net/http.h b/bertos/net/http.h index 49701295..b03b93b2 100644 --- a/bertos/net/http.h +++ b/bertos/net/http.h @@ -43,27 +43,26 @@ #ifndef NET_HTTP_H #define NET_HTTP_H - -#include - -#include -#include -#include #include -#include typedef int (*http_handler_t)(struct netconn *client, const char *name, char *revc_buf, size_t revc_len); typedef struct HttpCGI { - unsigned type; - const char *name; - http_handler_t handler; + unsigned type; ///< Strategy to find string in the cgi table. + const char *name; ///< Request string from GET request + http_handler_t handler; ///< Callback to process the special request } HttpCGI; #define CGI_MATCH_NONE 0 -#define CGI_MATCH_NAME 1 -#define CGI_MATCH_EXT 2 +#define CGI_MATCH_WORD 1 ///< Select item in table only if string match +#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 + +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); +void http_decodeUrl(const char *raw_buf, size_t raw_len, char *decodec_buf, size_t len); void http_sendOk(struct netconn *client); void http_sendFileNotFound(struct netconn *client); @@ -72,4 +71,8 @@ void http_sendInternalErr(struct netconn *client); void http_poll(struct netconn *server); void http_init(http_handler_t default_callback, struct HttpCGI *table); +int http_testSetup(void); +int http_testRun(void); +int http_testTearDown(void); + #endif /* NET_HTTP_H */