Skip to content
This repository was archived by the owner on Jan 14, 2026. It is now read-only.

Commit 1640363

Browse files
authored
Merge pull request #482 from naive924/feat/update-latest-jitsi-meet2
Feat/update latest jitsi meet2 Looks good to me. Thanks for doing this investigation and making it work. Lets see if it works on my windows pc as well.
2 parents 59db429 + 9574c90 commit 1640363

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ public synchronized void initialize( File pluginDirectory) throws Exception
139139
" }",
140140
" bridge {",
141141
" selection-strategy = RegionBasedBridgeSelectionStrategy ",
142-
" brewery-jid: \"JvbBrewery@internal.auth." + XMPPServer.getInstance().getServerInfo().getXMPPDomain() + "\"",
143142
" }",
144143
" rest {",
145144
" port = " + jicofoPort,

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

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,6 @@ public synchronized void initialize(final PluginManager manager, final File plug
160160
" enabled = true",
161161
" }",
162162
" }",
163-
"",
164-
" health {",
165-
" interval = 300 seconds",
166-
" }",
167163
"",
168164
" cc {",
169165
" trust-bwe = false",
@@ -192,6 +188,13 @@ public synchronized void initialize(final PluginManager manager, final File plug
192188
" }",
193189
" }",
194190
"",
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+
" }",
195198
"}"
196199
);
197200

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1224,7 +1224,7 @@ public void occupantLeft(final JID roomJID, JID user, String nickname)
12241224

12251225
int total_conference_seconds = summary.getInt("total_conference_seconds");
12261226
int total_participants = summary.getInt("total_participants");
1227-
// int total_failed_conferences = summary.getInt("total_failed_conferences"); // This is not possible with the latest JVM
1227+
// int total_failed_conferences = summary.getInt("total_failed_conferences"); // This is not possible with the latest version of jitsi-videobridge 2.3.
12281228
int total_conferences_created = summary.getInt("total_conferences_created");
12291229
int total_conferences_completed = summary.getInt("total_conferences_completed");
12301230
int conferences = summary.getInt("conferences");

0 commit comments

Comments
 (0)