ufairiya / mongoose

Automatically exported from code.google.com/p/mongoose
MIT License
0 stars 0 forks source link

SSL port indicator is case-sensitive #67

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In set_ports_option():

is_ssl  = p[len - 1] == 's' ? TRUE : FALSE;

only looks for a lowercase 's'; although it is unlikely that a user will
use uppercase, but cannot be discounted. And there is no indication in the
manual that it should be lowercase.

Original issue reported on code.google.com by PKuo...@gmail.com on 30 Jun 2009 at 2:14

GoogleCodeExporter commented 9 years ago
I think the manual (http://code.google.com/p/mongoose/wiki/MongooseManual) 
states
that the letter must be 's'.

Original comment by valenok on 5 Jul 2009 at 12:58