summaryrefslogtreecommitdiff
path: root/src/burl.h
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-10-10 02:26:05 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-02-24 11:15:32 -0500
commit5d13b408243b1c4b704620514e86d14c5178501e (patch)
tree00906c47d2494ff528a85d3abc33888b5bda85ee /src/burl.h
parent83535bbef351bc39edb201f815a79c0046f83d20 (diff)
downloadlighttpd-git-5d13b408243b1c4b704620514e86d14c5178501e.tar.gz
[core] (const buffer *) in (struct burl_parts_t)
Diffstat (limited to 'src/burl.h')
-rw-r--r--src/burl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/burl.h b/src/burl.h
index f4e5f04b..a013cc07 100644
--- a/src/burl.h
+++ b/src/burl.h
@@ -5,11 +5,11 @@
#include "buffer.h"
struct burl_parts_t {
- buffer *scheme;
- buffer *authority;
+ const buffer *scheme;
+ const buffer *authority;
unsigned short port;
- buffer *path;
- buffer *query;
+ const buffer *path;
+ const buffer *query;
};
enum burl_opts_e {