summaryrefslogtreecommitdiff
path: root/rebind.c
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2012-02-01 19:10:39 -0600
committerJoel Martin <github@martintribe.org>2012-02-01 19:10:39 -0600
commit04b3b2057c2bd2bc1425cadcea4180866c50f49e (patch)
tree33d8dc40bd485a8b385de4274312f1ef976a9bad /rebind.c
parentb2940c035faee14212bc745b80bf937bee41dfa8 (diff)
downloadwebsockify-04b3b2057c2bd2bc1425cadcea4180866c50f49e.tar.gz
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.
Diffstat (limited to 'rebind.c')
-rw-r--r--rebind.c2
1 files changed, 1 insertions, 1 deletions
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(...)