diff --git a/src/runtime/mod.rs b/src/runtime/mod.rs index 8c8d0e72082ce9c9c4e222bc469ec3f4df79954a..dfce1a1281671528fc7cb18e0fe343434ea6dffc 100644 --- a/src/runtime/mod.rs +++ b/src/runtime/mod.rs @@ -42,8 +42,8 @@ pub(crate) struct SyncProtoContext<'a> { } #[derive(Debug)] pub(crate) struct UdpEndpointExt { - sock: UdpSocket, // already bound and connected - received_from_this_round: Option, + pub(crate) sock: UdpSocket, // already bound and connected + pub(crate) received_from_this_round: Option, outgoing_payloads: HashMap, getter_for_incoming: PortId, }