From: Adam Dickmeiss Date: Thu, 11 Aug 2011 08:45:16 +0000 (+0200) Subject: Update other version of tcpip_straddr for https too X-Git-Tag: v4.2.8~2 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=bbb858cba04873a77ae3d55f759c4226cbd61eec Update other version of tcpip_straddr for https too --- diff --git a/src/tcpip.c b/src/tcpip.c index fff2ef9..603f331 100644 --- a/src/tcpip.c +++ b/src/tcpip.c @@ -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;