Handle IPv6 addresses in OCSP_parse_url.
authorTom Greenslade <thomgree@cisco.com>
Fri, 27 Jun 2014 16:30:59 +0000 (17:30 +0100)
committerDr. Stephen Henson <steve@openssl.org>
Fri, 27 Jun 2014 16:30:59 +0000 (17:30 +0100)
PR#2783

crypto/ocsp/ocsp_lib.c

index 2678e222dd14eaf18506af1018732a6985aca3e7..4a7fe2592c153800a8cdb608fa0329120d79dcfd 100644 (file)
@@ -222,8 +222,19 @@ int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath, in
 
        if (!*ppath) goto mem_err;
 
+       p = host;
+       if(host[0] == '[')
+               {
+               /* ipv6 literal */
+               host++;
+               p = strchr(host, ']');
+               if(!p) goto parse_err;
+               *p = '\0';
+               p++;
+               }
+
        /* Look for optional ':' for port number */
-       if ((p = strchr(host, ':')))
+       if ((p = strchr(p, ':')))
                {
                *p = 0;
                port = p + 1;