Skip to content

Commit

Permalink
Merge pull request #73 from youngmonkeys/dev
Browse files Browse the repository at this point in the history
update websocket default frame size
  • Loading branch information
tvd12 authored Aug 29, 2021
2 parents 4ca7d42 + a1d7e10 commit c2d2cea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public EzySimpleWebSocketSetting() {
super();
setPort(2208);
setSslPort(2812);
setMaxFrameSize(4096);
setMaxFrameSize(2048);
setWriterThreadPoolSize(8);
setSslConfig(new EzySimpleSslConfigSetting());
setCodecCreator("com.tvd12.ezyfox.codec.JacksonCodecCreator");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class EzyWebSocketSettingBuilder extends EzyAbstractSocketSettingBuilder<
public EzyWebSocketSettingBuilder() {
this.port = 2208;
this.sslPort = 2812;
this.maxFrameSize = 32678;
this.maxFrameSize = 2048;
this.writerThreadPoolSize = 8;
this.managementEnable = false;
this.sslConfig = new EzySimpleSslConfigSetting();
Expand Down

0 comments on commit c2d2cea

Please sign in to comment.