2 * libwebsockets-test-client - libwebsockets test implementation
4 * Copyright (C) 2011-2016 Andy Green <andy@warmcat.com>
6 * This file is made available under the Creative Commons CC0 1.0
7 * Universal Public Domain Dedication.
9 * The person who associated a work with this deed has dedicated
10 * the work to the public domain by waiving all of his or her rights
11 * to the work worldwide under copyright law, including all related
12 * and neighboring rights, to the extent allowed by law. You can copy,
13 * modify, distribute and perform the work, even for commercial purposes,
14 * all without asking permission.
16 * The test apps are intended to be adapted for use in your code, which
17 * may be proprietary. So unlike the library itself, they are licensed
29 #include "gettimeofday.h"
36 #include "../lib/libwebsockets.h"
38 static int deny_deflate, deny_mux, longlived, mirror_lifetime;
39 static struct lws *wsi_dumb, *wsi_mirror;
40 static volatile int force_exit;
41 static unsigned int opts;
44 * This demo shows how to connect multiple websockets simultaneously to a
45 * websocket server (there is no restriction on their having to be the same
46 * server just it simplifies the demo).
48 * dumb-increment-protocol: we connect to the server and print the number
51 * lws-mirror-protocol: draws random circles, which are mirrored on to every
52 * client (see them being drawn in every browser
53 * session also using the test server)
58 PROTOCOL_DUMB_INCREMENT,
67 * dumb_increment protocol
69 * since this also happens to be protocols[0], some callbacks that are not
70 * bound to a specific protocol also turn up here.
74 callback_dumb_increment(struct lws *wsi, enum lws_callback_reasons reason,
75 void *user, void *in, size_t len)
79 case LWS_CALLBACK_CLIENT_ESTABLISHED:
80 lwsl_info("dumb: LWS_CALLBACK_CLIENT_ESTABLISHED\n");
83 case LWS_CALLBACK_CLOSED:
84 lwsl_notice("dumb: LWS_CALLBACK_CLOSED\n");
88 case LWS_CALLBACK_CLIENT_RECEIVE:
89 ((char *)in)[len] = '\0';
90 lwsl_info("rx %d '%s'\n", (int)len, (char *)in);
93 /* because we are protocols[0] ... */
95 case LWS_CALLBACK_CLIENT_CONNECTION_ERROR:
96 if (wsi == wsi_dumb) {
97 lwsl_err("dumb: LWS_CALLBACK_CLIENT_CONNECTION_ERROR\n");
100 if (wsi == wsi_mirror) {
101 lwsl_err("mirror: LWS_CALLBACK_CLIENT_CONNECTION_ERROR\n");
106 case LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED:
107 if ((strcmp(in, "deflate-stream") == 0) && deny_deflate) {
108 lwsl_notice("denied deflate-stream extension\n");
111 if ((strcmp(in, "x-webkit-deflate-frame") == 0))
113 if ((strcmp(in, "deflate-frame") == 0))
125 /* lws-mirror_protocol */
129 callback_lws_mirror(struct lws *wsi, enum lws_callback_reasons reason,
130 void *user, void *in, size_t len)
132 unsigned char buf[LWS_PRE + 4096];
133 unsigned int rands[4];
138 case LWS_CALLBACK_CLIENT_ESTABLISHED:
140 lwsl_notice("mirror: LWS_CALLBACK_CLIENT_ESTABLISHED\n");
142 lws_get_random(lws_get_context(wsi), rands, sizeof(rands[0]));
143 mirror_lifetime = 16384 + (rands[0] & 65535);
144 /* useful to test single connection stability */
146 mirror_lifetime += 500000;
148 lwsl_info("opened mirror connection with "
149 "%d lifetime\n", mirror_lifetime);
152 * mirror_lifetime is decremented each send, when it reaches
153 * zero the connection is closed in the send callback.
154 * When the close callback comes, wsi_mirror is set to NULL
155 * so a new connection will be opened
157 * start the ball rolling,
158 * LWS_CALLBACK_CLIENT_WRITEABLE will come next service
160 lws_callback_on_writable(wsi);
163 case LWS_CALLBACK_CLOSED:
164 lwsl_notice("mirror: LWS_CALLBACK_CLOSED mirror_lifetime=%d\n", mirror_lifetime);
168 case LWS_CALLBACK_CLIENT_WRITEABLE:
169 for (n = 0; n < 1; n++) {
170 lws_get_random(lws_get_context(wsi), rands, sizeof(rands));
171 l += sprintf((char *)&buf[LWS_PRE + l],
173 rands[0] & 0xffffff, /* colour */
174 rands[1] & 511, /* x */
175 rands[2] & 255, /* y */
176 (rands[3] & 31) + 1); /* radius */
179 n = lws_write(wsi, &buf[LWS_PRE], l,
180 opts | LWS_WRITE_TEXT);
184 lwsl_err("Partial write LWS_CALLBACK_CLIENT_WRITEABLE\n");
189 if (!mirror_lifetime) {
190 lwsl_info("closing mirror session\n");
193 /* get notified as soon as we can write again */
194 lws_callback_on_writable(wsi);
205 /* list of supported protocols and callbacks */
207 static struct lws_protocols protocols[] = {
209 "dumb-increment-protocol,fake-nonexistant-protocol",
210 callback_dumb_increment,
215 "fake-nonexistant-protocol,lws-mirror-protocol",
220 { NULL, NULL, 0, 0 } /* end */
223 static const struct lws_extension exts[] = {
225 "permessage-deflate",
226 lws_extension_callback_pm_deflate,
227 "permessage-deflate; client_max_window_bits"
231 lws_extension_callback_pm_deflate,
234 { NULL, NULL, NULL /* terminator */ }
239 void sighandler(int sig)
244 static struct option options[] = {
245 { "help", no_argument, NULL, 'h' },
246 { "debug", required_argument, NULL, 'd' },
247 { "port", required_argument, NULL, 'p' },
248 { "ssl", no_argument, NULL, 's' },
249 { "version", required_argument, NULL, 'v' },
250 { "undeflated", no_argument, NULL, 'u' },
251 { "nomux", no_argument, NULL, 'n' },
252 { "longlived", no_argument, NULL, 'l' },
256 static int ratelimit_connects(unsigned int *last, unsigned int secs)
260 gettimeofday(&tv, NULL);
261 if (tv.tv_sec - (*last) < secs)
269 int main(int argc, char **argv)
271 int n = 0, ret = 0, port = 7681, use_ssl = 0, ietf_version = -1;
272 unsigned int rl_dumb = 0, rl_mirror = 0;
273 struct lws_context_creation_info info;
274 struct lws_client_connect_info i;
275 struct lws_context *context;
276 const char *prot, *p;
279 memset(&info, 0, sizeof info);
281 lwsl_notice("libwebsockets test client - license LGPL2.1+SLE\n");
282 lwsl_notice("(C) Copyright 2010-2016 Andy Green <andy@warmcat.com>\n");
288 n = getopt_long(argc, argv, "nuv:hsp:d:l", options, NULL);
293 lws_set_log_level(atoi(optarg), NULL);
296 use_ssl = 2; /* 2 = allow selfsigned */
305 ietf_version = atoi(optarg);
321 signal(SIGINT, sighandler);
323 memset(&i, 0, sizeof(i));
326 if (lws_parse_uri(argv[optind], &prot, &i.address, &i.port, &p))
329 /* add back the leading / on path */
331 strncpy(path + 1, p, sizeof(path) - 2);
332 path[sizeof(path) - 1] = '\0';
335 if (!strcmp(prot, "http") || !strcmp(prot, "ws"))
337 if (!strcmp(prot, "https") || !strcmp(prot, "wss"))
341 * create the websockets context. This tracks open connections and
342 * knows how to route any traffic and which protocol version to use,
343 * and if each connection is client or server side.
345 * For this client-only demo, we tell it to not listen on any port.
348 info.port = CONTEXT_PORT_NO_LISTEN;
349 info.protocols = protocols;
353 context = lws_create_context(&info);
354 if (context == NULL) {
355 fprintf(stderr, "Creating libwebsocket context failed\n");
360 i.ssl_connection = use_ssl;
362 i.origin = i.address;
363 i.ietf_version_or_minus_one = ietf_version;
364 i.client_exts = exts;
366 * sit there servicing the websocket context to handle incoming
367 * packets, and drawing random circles on the mirror protocol websocket
369 * nothing happens until the client websocket connection is
370 * asynchronously established... calling lws_client_connect() only
371 * instantiates the connection logically, lws_service() progresses it
375 while (!force_exit) {
377 if (!wsi_dumb && ratelimit_connects(&rl_dumb, 2u)) {
378 lwsl_notice("dumb: connecting\n");
379 i.protocol = protocols[PROTOCOL_DUMB_INCREMENT].name;
380 wsi_dumb = lws_client_connect_via_info(&i);
383 if (!wsi_mirror && ratelimit_connects(&rl_mirror, 2u)) {
384 lwsl_notice("mirror: connecting\n");
385 i.protocol = protocols[PROTOCOL_LWS_MIRROR].name;
386 wsi_mirror = lws_client_connect_via_info(&i);
389 lws_service(context, 500);
392 lwsl_err("Exiting\n");
393 lws_context_destroy(context);
398 fprintf(stderr, "Usage: libwebsockets-test-client "
399 "<server address> [--port=<p>] "
400 "[--ssl] [-k] [-v <ver>] "
401 "[-d <log bitfield>] [-l]\n");