From 7a1b8a0fefe9a2a0fae6289195e2936ec9c17000 Mon Sep 17 00:00:00 2001 From: cbdev Date: Thu, 20 Jun 2019 15:23:45 +0200 Subject: Implement fixedlength framing --- websocksy.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'websocksy.c') diff --git a/websocksy.c b/websocksy.c index 8b37cec..5c29f8c 100644 --- a/websocksy.c +++ b/websocksy.c @@ -194,6 +194,10 @@ ws_framing core_framing(char* name){ return plugin_framing(name); } +int core_register_framing(char* name, ws_framing func){ + return plugin_register_framing(name, func); +} + /* Signal handler, attached to SIGINT */ static void signal_handler(int signum){ shutdown_requested = 1; -- cgit v1.2.3