| 56 | /// TLS 证书配置 |
| 57 | #[derive(Debug, Clone, Deserialize)] |
| 58 | pub struct TlsConfig { |
| 59 | /// 证书文件路径(留空则自动生成自签名证书) |
| 60 | pub cert_path: String, |
| 61 | /// 私钥文件路径(留空则自动生成自签名证书) |
| 62 | pub key_path: String, |
| 63 | } |
| 64 | |
| 65 | /// 媒体(RTP)中继配置 |
| 66 | #[derive(Debug, Clone, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected