src/server/daemon/httpparser.h

changeset 415
d938228c382e
parent 180
98462e878ca7
--- a/src/server/daemon/httpparser.h	Wed Nov 02 19:19:01 2022 +0100
+++ b/src/server/daemon/httpparser.h	Sun Nov 06 15:53:32 2022 +0100
@@ -30,7 +30,7 @@
 #define	HTTPPARSER_H
 
 
-#include <ucx/string.h>
+#include <cx/string.h>
 #include "httprequest.h"
 
 #ifdef	__cplusplus
@@ -49,15 +49,15 @@
     HTTPRequest *request;
 
     int state;
-    sstr_t start_line;
+    cxmutstr start_line;
 
     /* local parser variables */
     int wl;       /* only white space */
     int tk;       /* token: 0: header name 1: header value */
     int offset;   /* offset of parsed string */
     int strend;   /* end position */
-    sstr_t name;
-    sstr_t value;
+    cxmutstr name;
+    cxmutstr value;
 
 } HttpParser;
 

mercurial