Add other string search method for cgi table.
[bertos.git] / bertos / net / http.h
index 665e97aa711b8e4aa14b0f4b163aa61a8e1e37a5..2b49c7f0b7dd7abbb084711842187df394f943ae 100644 (file)
@@ -56,8 +56,9 @@ typedef struct HttpCGI
 
 
 #define CGI_MATCH_NONE   0
-#define CGI_MATCH_NAME   1  ///< Select item in table only if string match
+#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
 
 void http_getPageName(const char *revc_buf, size_t recv_len, char *page_name, size_t len);