From 3de9895203df34e8008449be9414efb4ddeb69da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Wed, 9 Nov 2022 01:08:18 +0100 Subject: [PATCH] WIP: note --- clients/native/src/websocket/handler.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clients/native/src/websocket/handler.rs b/clients/native/src/websocket/handler.rs index fe23a518ab..8a1e369bb7 100644 --- a/clients/native/src/websocket/handler.rs +++ b/clients/native/src/websocket/handler.rs @@ -84,6 +84,9 @@ impl Handler { ) -> Option { // the ack control is now responsible for chunking, etc. let input_msg = InputMessage::new_fresh(recipient, message, with_reply_surb); + + // WIP(JON): here we should chunk the message, and send it to the sphinx_message_sender + self.msg_input.unbounded_send(input_msg).unwrap(); None