diff --git a/libs/hbb_common b/libs/hbb_common index 05ed68fed..6918d3593 160000 --- a/libs/hbb_common +++ b/libs/hbb_common @@ -1 +1 @@ -Subproject commit 05ed68fed8198cbb72edb64c7b4ae4d38c70c6ae +Subproject commit 6918d35935b48b03ab24f11dfda48b6379807cbf diff --git a/src/server/connection.rs b/src/server/connection.rs index 4767e05fc..28c4a25fa 100644 --- a/src/server/connection.rs +++ b/src/server/connection.rs @@ -2576,11 +2576,13 @@ impl Connection { let PortForward { host, port, + multiplex, special_fields: _, } = pf; push(b"port_forward"); push(host.as_bytes()); push(&port.to_le_bytes()); + push(&[*multiplex as u8]); } // Variants this build does not know execute as remote, so they latch as remote. None | Some(_) => push(b"remote"),