Skip to content

Commit 9574c90

Browse files
committed
Fix: SocketPool size to 1 on Windows, as STUN Binding Requests fail to complete otherwise.
1 parent b5b63b6 commit 9574c90

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/java/org/jivesoftware/openfire/plugin/ofmeet/JitsiJvbWrapper.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,13 @@ public synchronized void initialize(final PluginManager manager, final File plug
188188
" }",
189189
" }",
190190
"",
191+
"}",
192+
"ice4j {",
193+
" harvest {",
194+
" udp {",
195+
OSUtils.IS_WINDOWS ? " socket-pool-size = 1" : "", // Note: SocketPool size to 1 on Windows, as STUN Binding Requests fail to complete otherwise.
196+
" }",
197+
" }",
191198
"}"
192199
);
193200

0 commit comments

Comments
 (0)