1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-12-31 11:41:32 +01:00

* http.c (do_parse_uri): Properly handle IPv6 literal addresses as per

RFC-2732.  Adapted from patch by Phil Pennock.
This commit is contained in:
David Shaw 2009-03-13 17:51:05 +00:00
parent 81723b397a
commit f801e0f9a8
2 changed files with 21 additions and 7 deletions

View File

@ -1,5 +1,8 @@
2009-03-13 David Shaw <dshaw@jabberwocky.com>
* http.c (do_parse_uri): Properly handle IPv6 literal addresses as
per RFC-2732. Adapted from patch by Phil Pennock.
* Makefile.am, http.c (start_server): Minor tweaks to get
http-test compiling again.

View File

@ -343,16 +343,27 @@ do_parse_uri( PARSED_URI uri, int only_local_part )
}
strlwr( p );
uri->host = p;
if( (p3=strchr( p, ':' )) ) {
*p3++ = 0;
uri->port = atoi( p3 );
}
uri->host = p;
/* Handle a host of [IP] so that [IP:V6]:port works */
if( *p == '[' && (p3=strchr( p, ']' )) )
{
*p3++ = '\0';
/* worst case, uri->host should have length 0, points to \0 */
uri->host = p + 1;
p = p3;
}
else
uri->host = p;
if( (p3=strchr( p, ':' )) )
{
*p3++ = '\0';
uri->port = atoi( p3 );
}
if( (n = remove_escapes( uri->host )) < 0 )
return G10ERR_BAD_URI;
if( n != strlen( p ) )
if( n != strlen( uri->host ) )
return G10ERR_BAD_URI; /* hostname with a Nul in it */
p = p2 ? p2 : NULL;
}