648540858
2023-06-25 66eda32ab97d6e94e9f274d6faa4df586c452dfb
src/main/java/com/genersoft/iot/vmp/conf/UserSetting.java
@@ -33,7 +33,7 @@
    private Boolean logInDatebase = Boolean.TRUE;
    private Boolean usePushingAsStatus = Boolean.TRUE;
    private Boolean usePushingAsStatus = Boolean.FALSE;
    private Boolean useSourceIpAsStreamIp = Boolean.FALSE;
@@ -47,18 +47,23 @@
    private Boolean syncChannelOnDeviceOnline = Boolean.FALSE;
    private Boolean pushStreamAfterAck = Boolean.FALSE;
    private Boolean sipLog = Boolean.FALSE;
    private Boolean sendToPlatformsWhenIdLost = Boolean.FALSE;
    private Boolean refuseChannelStatusChannelFormNotify = Boolean.FALSE;
    private Boolean deviceStatusNotify = Boolean.FALSE;
    private Boolean useCustomSsrcForParentInvite = Boolean.TRUE;
    private String serverId = "000000";
    private String recordPath = null;
    private String thirdPartyGBIdReg = "[\\s\\S]*";
    private String broadcastForPlatform = "UDP";
    private List<String> interfaceAuthenticationExcludes = new ArrayList<>();
@@ -214,6 +219,22 @@
        this.syncChannelOnDeviceOnline = syncChannelOnDeviceOnline;
    }
    public String getBroadcastForPlatform() {
        return broadcastForPlatform;
    }
    public void setBroadcastForPlatform(String broadcastForPlatform) {
        this.broadcastForPlatform = broadcastForPlatform;
    }
    public Boolean getPushStreamAfterAck() {
        return pushStreamAfterAck;
    }
    public void setPushStreamAfterAck(Boolean pushStreamAfterAck) {
        this.pushStreamAfterAck = pushStreamAfterAck;
    }
    public Boolean getSipUseSourceIpAsRemoteAddress() {
        return sipUseSourceIpAsRemoteAddress;
    }
@@ -277,4 +298,12 @@
    public void setDeviceStatusNotify(Boolean deviceStatusNotify) {
        this.deviceStatusNotify = deviceStatusNotify;
    }
    public Boolean getUseCustomSsrcForParentInvite() {
        return useCustomSsrcForParentInvite;
    }
    public void setUseCustomSsrcForParentInvite(Boolean useCustomSsrcForParentInvite) {
        this.useCustomSsrcForParentInvite = useCustomSsrcForParentInvite;
    }
}