zlm srt 配置

This commit is contained in:
shikong 2023-08-18 16:40:53 +08:00
parent 27b56f6046
commit bb5e4ffbac
2 changed files with 14 additions and 0 deletions

View File

@ -53,4 +53,7 @@ public class ServerConfig {
@JsonUnwrapped(prefix = "shell.") @JsonUnwrapped(prefix = "shell.")
private ShellConfig shell; private ShellConfig shell;
@JsonUnwrapped(prefix = "srt.")
private SrtConfig srtConfig;
} }

View File

@ -0,0 +1,11 @@
package cn.skcks.docking.gb28181.media.dto.config;
import lombok.Data;
@Data
public class SrtConfig {
private Integer latencyMul;
private Integer pktBufSize;
private Integer port;
private Integer timeoutSec;
}