Skip to content

Commit

Permalink
Fix the maximum size of characaters in 7-bit packed messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmoerenhout committed Nov 18, 2020
1 parent 72081e1 commit 996def4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class SubmitMultipartMultilangualExample {

private static final int MAX_MULTIPART_MSG_SEGMENT_SIZE_UCS2 = 134;
private static final int MAX_SINGLE_MSG_SEGMENT_SIZE_UCS2 = 70;
private static final int MAX_MULTIPART_MSG_SEGMENT_SIZE_7BIT = 154;
private static final int MAX_MULTIPART_MSG_SEGMENT_SIZE_7BIT = 153;
private static final int MAX_SINGLE_MSG_SEGMENT_SIZE_7BIT = 160;

private class SessionStateListenerImpl implements SessionStateListener {
Expand Down

0 comments on commit 996def4

Please sign in to comment.