Home | History | Annotate | Download | only in core

Lines Matching defs:authority

78 	char *authority = NULL;
135 * terminator after the authority field, so shuffle
136 * the authority down by one byte, overwriting one of
139 authority = ( path + 2 );
140 if ( ( tmp = strchr ( authority, '/' ) ) ) {
143 memmove ( ( authority - 1 ), authority,
144 ( tmp - authority ) );
145 authority--;
153 /* Split authority into user[:password] and host[:port] portions */
154 if ( ( tmp = strchr ( authority, '@' ) ) ) {
158 uri->user = authority;
159 if ( ( tmp = strchr ( authority, ':' ) ) ) {
166 uri->host = authority;