From: Andy Green Date: Sun, 30 Jan 2011 21:04:24 +0000 (+0000) Subject: add-k-opt-to-test-client.patch X-Git-Tag: upstream/1.7.3~1431 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=990d5062d007dcd11f51b666b898cd5c85a968e4;p=platform%2Fupstream%2Flibwebsockets.git add-k-opt-to-test-client.patch Signed-off-by: Andy Green --- 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 +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; }