Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Red5/red5-server
Browse files Browse the repository at this point in the history
  • Loading branch information
mondain committed Apr 6, 2022
2 parents 6749bcb + 2390981 commit edb5459
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/org/red5/server/net/rtmp/RTMPMinaTransport.java
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,14 @@ public void setReceiveBufferSize(int receiveBufferSize) {
this.receiveBufferSize = receiveBufferSize;
}

public int getMaxReadBufferSize() {
return maxReadBufferSize;
}

public void setMaxReadBufferSize(int maxReadBufferSize) {
this.maxReadBufferSize = maxReadBufferSize;
}

/**
* @param trafficClass
* the trafficClass to set
Expand Down

0 comments on commit edb5459

Please sign in to comment.