We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4f51cd commit 838e190Copy full SHA for 838e190
src/main/java/org/jitsi/videobridge/octo/OctoRelay.java
@@ -77,7 +77,14 @@ public OctoRelay(String address, int port)
77
". Receive buffer size " + s.getReceiveBufferSize() +
78
" (asked for " + SO_RCVBUF + ").");
79
80
- socket = new MultiplexingDatagramSocket(s, true /* persistent */);
+ socket = new MultiplexingDatagramSocket(s, true /* persistent */)
81
+ {
82
+ @Override
83
+ public void setReceiveBufferSize(int size)
84
85
+ // We want to keep the buffer size to the one we set above.
86
+ }
87
+ };
88
this.port = port;
89
String id = address + ":" + port;
90
setRelayId(id);
0 commit comments