Instead of accepting any packet size for incoming message, Some(default_max_incoming_size) is used in the network_connect method, leading to a Codec using max_incoming_size = Some(default_max_incoming_size) instead of None.
I would have expected that set_max_packet_size(None) leads to max_incoming_size = None in the Codec.
Instead of accepting any packet size for incoming message, Some(default_max_incoming_size) is used in the network_connect method, leading to a Codec using max_incoming_size = Some(default_max_incoming_size) instead of None.
I would have expected that set_max_packet_size(None) leads to max_incoming_size = None in the Codec.