aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index e3d9a433..50c1a1ec 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -999,7 +999,7 @@ struct MHD_Connection
999 /** 999 /**
1000 * Request method. Should be GET/POST/etc. Allocated in pool. 1000 * Request method. Should be GET/POST/etc. Allocated in pool.
1001 */ 1001 */
1002 char *method; 1002 const char *method;
1003 1003
1004 /** 1004 /**
1005 * The request method as enum. 1005 * The request method as enum.
@@ -1016,7 +1016,7 @@ struct MHD_Connection
1016 * HTTP version string (i.e. http/1.1). Allocated 1016 * HTTP version string (i.e. http/1.1). Allocated
1017 * in pool. 1017 * in pool.
1018 */ 1018 */
1019 char *version; 1019 const char *version;
1020 1020
1021 /** 1021 /**
1022 * HTTP protocol version as enum. 1022 * HTTP protocol version as enum.