summaryrefslogtreecommitdiff
path: root/test-server
diff options
context:
space:
mode:
authorAndy Green <andy@warmcat.com>2011-01-30 21:04:24 +0000
committerAndy Green <andy@warmcat.com>2011-01-30 21:04:24 +0000
commit990d5062d007dcd11f51b666b898cd5c85a968e4 (patch)
tree0ab8acbb1af6c94c9fac0e4676799eb6d032cc75 /test-server
parent8014b29d204a57a32bf4006b84af63d436227916 (diff)
add-k-opt-to-test-client.patch
Signed-off-by: Andy Green <andy@warmcat.com>
Diffstat (limited to 'test-server')
-rw-r--r--test-server/test-client.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/test-server/test-client.c b/test-server/test-client.c
index ada5a0e..e03d115 100644
--- a/test-server/test-client.c
+++ b/test-server/test-client.c
@@ -28,6 +28,8 @@
#include "../lib/libwebsockets.h"
#include <poll.h>
+static unsigned int opts;
+
/*
* This demo shows how to connect multiple websockets simultaneously to a
* websocket server (there is no restriction on their having to be the same
@@ -111,7 +113,7 @@ callback_lws_mirror(struct libwebsocket *wsi,
(int)random() % 24);
libwebsocket_write(wsi,
- &buf[LWS_SEND_BUFFER_PRE_PADDING], l, LWS_WRITE_TEXT);
+ &buf[LWS_SEND_BUFFER_PRE_PADDING], l, opts | LWS_WRITE_TEXT);
/* get notified as soon as we can write again */
@@ -155,6 +157,7 @@ static struct option options[] = {
{ "help", no_argument, NULL, 'h' },
{ "port", required_argument, NULL, 'p' },
{ "ssl", no_argument, NULL, 's' },
+ { "killmask", no_argument, NULL, 'k' },
{ NULL, 0, 0, 0 }
};
@@ -179,7 +182,7 @@ int main(int argc, char **argv)
optind++;
while (n >= 0) {
- n = getopt_long(argc, argv, "hsp:", options, NULL);
+ n = getopt_long(argc, argv, "khsp:", options, NULL);
if (n < 0)
continue;
switch (n) {
@@ -189,6 +192,9 @@ int main(int argc, char **argv)
case 'p':
port = atoi(optarg);
break;
+ case 'k':
+ opts = LWS_WRITE_CLIENT_IGNORE_XOR_MASK;
+ break;
case 'h':
goto usage;
}