Am I understanding correctly that FragmentCollectorRead doesn't limit the size of the message? Max message size is applied only during parsing frame header, i.e. to the payload in the frame but not inside FragmentCollectorRead::read_frame during accumulation.
|
if payload_len >= self.max_message_size { |
Am I understanding correctly that
FragmentCollectorReaddoesn't limit the size of the message? Max message size is applied only during parsing frame header, i.e. to the payload in the frame but not insideFragmentCollectorRead::read_frameduring accumulation.fastwebsockets/src/lib.rs
Line 735 in 22c5e72