canonical libwebsockets.org websocket library
Find a file
Oleg Golosovskiy 2ef75057cd http charsets have case insensitive tokens
Andy,

According http://www.ietf.org/rfc/rfc2616.txt HTTP character sets are identified by case-insensitive tokens.

Please replase

                     if (strcmp(lws_tokens[n].token, wsi->name_buffer))
                           continue;

to

                     if (stricmp(lws_tokens[n].token, wsi->name_buffer))
                           continue;

Oleg

Also introduce strcasecmp definition for win32

Signed-off-by: Oleg Golosovskiy <ogolosovskiy@unison.com>
2011-10-04 20:20:14 +08:00
lib http charsets have case insensitive tokens 2011-10-04 20:20:14 +08:00
scripts refactor-into-dirs.patch 2010-11-01 09:12:17 +00:00
test-server test html uplevel detect browser and MozWebSocket 2011-09-25 10:01:02 +01:00
win32port Added support for Windows XP. 2011-10-04 19:55:18 +08:00
.gitignore Ignoring Release build and opensdf files. 2011-09-26 12:09:20 +01:00
aclocal.m4 fork-sever-process-and-introduce-broadcast-api.patch 2010-12-18 15:13:50 +00:00
config.guess remove symlinks-from-automake-missing 2010-11-10 11:57:07 +00:00
config.h.in configure add requirement for zlib.h 2011-03-06 13:37:10 +00:00
config.sub remove symlinks-from-automake-missing 2010-11-10 11:57:07 +00:00
configure introduce x google mux very draft indeed 2011-05-23 10:00:03 +01:00
configure.ac introduce x google mux very draft indeed 2011-05-23 10:00:03 +01:00
COPYING add-COPYING-lgpl-2.1.patch 2010-11-08 17:12:19 +00:00
depcomp remove symlinks-from-automake-missing 2010-11-10 11:57:07 +00:00
INSTALL add-INSTALL.patch 2010-11-12 13:11:50 +00:00
install-sh remove symlinks-from-automake-missing 2010-11-10 11:57:07 +00:00
libwebsockets-api-doc.html doc LWS_EXTERN 2011-10-03 19:30:22 +08:00
libwebsockets.spec uplevel-rpm-spec-to-include-new-extpoll-sample.patch 2011-02-13 09:08:11 +00:00
ltmain.sh fork-sever-process-and-introduce-broadcast-api.patch 2010-12-18 15:13:50 +00:00
Makefile.am introduce-ssl-client-connections--flow-control.patch 2011-01-27 06:26:52 +00:00
Makefile.in introduce-ssl-client-connections--flow-control.patch 2011-01-27 06:26:52 +00:00
missing remove symlinks-from-automake-missing 2010-11-10 11:57:07 +00:00
README-test-server extensions fix deflate stream vs mux and veto it on mux children 2011-05-28 10:19:19 +01:00