From 299e4f2530ed21d851e672c624cf16b3e099f70e Mon Sep 17 00:00:00 2001 From: Dave Voutila Date: Thu, 30 Nov 2023 12:53:43 -0500 Subject: [PATCH] update test client for new handshake api signature --- client_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_test.c b/client_test.c index 0e4746e..5e3080d 100644 --- a/client_test.c +++ b/client_test.c @@ -70,7 +70,7 @@ main(int argc, char **argv) else assert(0 == dumb_connect(&ws, host, port)); - assert(0 == dumb_handshake(&ws, host, "/")); + assert(0 == dumb_handshake(&ws, host, "/", "dumb-ws")); printf("handshake complete\n"); assert(0 == dumb_ping(&ws));