81828384858687
this(receiver, PROTO_HDR); } private void error(String fmt, Object ... args) { receiver.received(new ProtocolError(Frame.L1, fmt, args)); }
76777879808182838485
private void setSegment(Frame frame, List<Frame> segment) { int key = segmentKey(frame); if (segments.containsKey(key)) { error(new ProtocolError(Frame.L2, "segment in progress: %s", frame)); } segments.put(segmentKey(frame), segment); }
83848586878889
78798081828384858687
79808182838485868788
92939495969798
_maxFrameSize = maxFrameSize; } private void error(String fmt, Object ... args) { receiver.received(new ProtocolError(Frame.L1, fmt, args)); }