From 04b3b2057c2bd2bc1425cadcea4180866c50f49e Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Wed, 1 Feb 2012 19:10:39 -0600 Subject: HyBi/IETF 6455 support to C websockify. It's probably broken and it's definitely still messy in several ways, but basic tests work with Chrome. Several other C websockify cleanups: - Remove most of the non-thread safe global variable usage (still a little bit that could be fixed so that threading would be easier). - Remove wswrapper. It is unmaintained, out of date, and never worked well anyways (since it really needed a way to do asynchronous queued work but it was running in another process context making that hard). - Use md5 routines from openssl. - Remove md5.c and md5.h since no longer needed. Thanks to https://github.com/dew111 for spurring me on to get this done by writing code. I didn't end up using much his forked code, but having something there goaded me enough to just get it working. --- rebind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rebind.c') diff --git a/rebind.c b/rebind.c index c7e83de..f6c5ed0 100644 --- a/rebind.c +++ b/rebind.c @@ -31,7 +31,7 @@ #if defined(DO_DEBUG) #define DEBUG(...) \ - fprintf(stderr, "wswrapper: "); \ + fprintf(stderr, "rebind: "); \ fprintf(stderr, __VA_ARGS__); #else #define DEBUG(...) -- cgit v1.2.1