aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/client_config/uri_parser.h
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2015-09-07 11:28:58 -0700
committerGravatar David Garcia Quintas <dgq@google.com>2015-09-08 16:21:44 -0700
commit526789159c00221aaaeb3b02b5add70b5c5fcb6d (patch)
treecee186617d488413073d427a63c4472dfbe4d3eb /src/core/client_config/uri_parser.h
parent02128e9bbf92c3900f0927a724482b5b3ff7541f (diff)
Added queries and fragments to uri parser
Diffstat (limited to 'src/core/client_config/uri_parser.h')
-rw-r--r--src/core/client_config/uri_parser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/client_config/uri_parser.h b/src/core/client_config/uri_parser.h
index ce4e6aecb0..b8daa13bd4 100644
--- a/src/core/client_config/uri_parser.h
+++ b/src/core/client_config/uri_parser.h
@@ -38,6 +38,8 @@ typedef struct {
char *scheme;
char *authority;
char *path;
+ char *query;
+ char *fragment;
} grpc_uri;
/** parse a uri, return NULL on failure */