[openssl-dev] [openssl.org #2712] Be more liberal when trying to recognize the XMPP starttls headers
Now being discussed at https://github.com/openssl/openssl/issues/1494 -- Ticket here: http://rt.openssl.org/Ticket/Display.html?id=2712 Please log in as guest with password guest if prompted -- openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev
Re: [openssl-dev] [openssl.org #2712] Be more liberal when trying to recognize the XMPP starttls headers
> Doesn't seem that way. Not present on VMS, and I can't find it on MDSN > either. So what I'd have to do is downcase the string and do strstr on all lowercase. Might be reasonable - http://rt.openssl.org/Ticket/Display.html?id=2712 Please log in as guest with password guest if prompted ___ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev
Re: [openssl-dev] [openssl.org #2712] Be more liberal when trying to recognize the XMPP starttls headers
> Doesn't seem that way. Not present on VMS, and I can't find it on MDSN > either. So what I'd have to do is downcase the string and do strstr on all lowercase. Might be reasonable ___ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev
[openssl-dev] [openssl.org #2712] Be more liberal when trying to recognize the XMPP starttls headers
Doesn't seem that way. Not present on VMS, and I can't find it on MDSN either. Vid Thu, 04 Feb 2016 kl. 21.05.13, skrev rsalz: > is strcasestr common? -- Richard Levitte [email protected] - http://rt.openssl.org/Ticket/Display.html?id=2712 Please log in as guest with password guest if prompted ___ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev
[openssl-dev] [openssl.org #2712] Be more liberal when trying to recognize the XMPP starttls headers
is strcasestr common? -- Rich Salz, OpenSSL dev team; [email protected] - http://rt.openssl.org/Ticket/Display.html?id=2712 Please log in as guest with password guest if prompted ___ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev
[openssl.org #2712] Be more liberal when trying to recognize the XMPP starttls headers
The attached simple patch allows other possible syntaxes of XMPP starttls headers to be recognized. -- Tomas Mraz No matter how far down the wrong road you've gone, turn back. Turkish proverb diff -ru openssl-1.0.0d.old/apps/s_client.c openssl-1.0.0d/apps/s_client.c --- openssl-1.0.0d.old/apps/s_client.c 2011-07-17 21:05:19.934181169 +0200 +++ openssl-1.0.0d/apps/s_client.c 2011-07-17 21:11:42.747824990 +0200 @@ -1186,7 +1186,7 @@ "xmlns='jabber:client' to='%s' version='1.0'>", host); seen = BIO_read(sbio,mbuf,BUFSIZZ); mbuf[seen] = 0; - while (!strstr(mbuf, "")) goto shut;
