aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_uri_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_uri_lib.h b/src/include/gnunet_uri_lib.h
index e5f144591..d428bdd9a 100644
--- a/src/include/gnunet_uri_lib.h
+++ b/src/include/gnunet_uri_lib.h
@@ -31,7 +31,7 @@
31 * Note: to make sure that no strings are copied, the first slash "/" in the 31 * Note: to make sure that no strings are copied, the first slash "/" in the
32 * path will be used to null terminate the hostname if no port is supplied. 32 * path will be used to null terminate the hostname if no port is supplied.
33 */ 33 */
34struct GNUNET_uri { 34struct GNUNET_Uri {
35 char *scheme; /* scheme, without ":" and "//" */ 35 char *scheme; /* scheme, without ":" and "//" */
36 char *username; /* username, default: NULL */ 36 char *username; /* username, default: NULL */
37 char *password; /* password, default: NULL */ 37 char *password; /* password, default: NULL */
@@ -44,7 +44,7 @@ struct GNUNET_uri {
44 44
45 45
46/* A struct to hold the query string parameter values. */ 46/* A struct to hold the query string parameter values. */
47struct GNUNET_uri_param { 47struct GNUNET_UriParam {
48 char *key; 48 char *key;
49 char *val; 49 char *val;
50}; 50};
@@ -70,7 +70,7 @@ struct GNUNET_uri_param {
70 * Returns 0 on success, otherwise -1. 70 * Returns 0 on success, otherwise -1.
71 */ 71 */
72int 72int
73GNUNET_uri_parse (struct GNUNET_uri *url, 73GNUNET_uri_parse (struct GNUNET_Uri *url,
74 char *url_str); 74 char *url_str);
75 75
76 76
@@ -115,7 +115,7 @@ GNUNET_uri_split_path (char *path,
115int 115int
116GNUNET_uri_parse_query (char *query, 116GNUNET_uri_parse_query (char *query,
117 char delimiter, 117 char delimiter,
118 struct GNUNET_uri_param *params, 118 struct GNUNET_UriParam *params,
119 int max_params); 119 int max_params);
120 120
121 121