diff --git a/jvb/pom.xml b/jvb/pom.xml index c5479f7d5e..7cf98e8893 100644 --- a/jvb/pom.xml +++ b/jvb/pom.xml @@ -108,7 +108,7 @@ ${project.groupId} jitsi-sctp - 1.0-23-ge04a9c9 + 1.0-21-gfe0d028 diff --git a/jvb/src/main/java/org/jitsi/videobridge/sctp/SctpManager.java b/jvb/src/main/java/org/jitsi/videobridge/sctp/SctpManager.java index af7f71a1b8..72e0cacce8 100644 --- a/jvb/src/main/java/org/jitsi/videobridge/sctp/SctpManager.java +++ b/jvb/src/main/java/org/jitsi/videobridge/sctp/SctpManager.java @@ -62,7 +62,7 @@ public class SctpManager classLogger.info("Initializing Sctp4j"); // "If UDP encapsulation is not necessary, the UDP port has to be set to 0" // All our SCTP is encapsulated in DTLS, we don't use direct UDP encapsulation. - Sctp4j.init(0, config.getDebugMask()); + Sctp4j.init(0); } else { diff --git a/jvb/src/main/kotlin/org/jitsi/videobridge/sctp/SctpConfig.kt b/jvb/src/main/kotlin/org/jitsi/videobridge/sctp/SctpConfig.kt index 4293cfdc62..ffed0aad65 100644 --- a/jvb/src/main/kotlin/org/jitsi/videobridge/sctp/SctpConfig.kt +++ b/jvb/src/main/kotlin/org/jitsi/videobridge/sctp/SctpConfig.kt @@ -21,7 +21,6 @@ import org.jitsi.metaconfig.config class SctpConfig private constructor() { val enabled: Boolean by config { "videobridge.sctp.enabled".from(JitsiConfig.newConfig) } - val debugMask: Int by config { "videobridge.sctp.debug-mask".from(JitsiConfig.newConfig) } fun enabled() = enabled diff --git a/jvb/src/main/resources/reference.conf b/jvb/src/main/resources/reference.conf index 43d9b37afa..94eaeddb0e 100644 --- a/jvb/src/main/resources/reference.conf +++ b/jvb/src/main/resources/reference.conf @@ -219,8 +219,6 @@ videobridge { sctp { // Whether SCTP data channels are enabled. enabled = true - // Debug mask of categories to enable in usrsctp. 0 for none, -1 for all, otherwise see usrsctp source - debug-mask = 0 } stats { // The interval at which stats are gathered.