Update other version of tcpip_straddr for https too
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 11 Aug 2011 08:45:16 +0000 (10:45 +0200)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 11 Aug 2011 08:45:16 +0000 (10:45 +0200)
src/tcpip.c

index fff2ef9..603f331 100644 (file)
@@ -471,7 +471,12 @@ void *tcpip_straddr(COMSTACK h, const char *str)
     tcpip_state *sp = (tcpip_state *)h->cprivate;
     int port = 210;
     if (h->protocol == PROTO_HTTP)
-        port = 80;
+    {
+        if (h->type == ssl_type)
+            port = 443;
+        else
+            port = 80;
+    }
 
     if (!tcpip_init())
         return 0;