| /xiu/application/xiu/src/config/ |
| H A D | config.toml | 7 port = 1935 13 port = 1935 18 port = 1936 22 port = 1935 37 port = 445 44 port = 8083 51 port = 8081 58 port = 8080
|
| H A D | mod.rs | 34 port: rtmp_port, in new() 44 port: rtsp_port, in new() 68 port: hls_port, in new() 94 pub port: usize, field 103 pub port: u16, field 109 pub port: usize, field 115 pub port: usize, field 121 pub port: usize, field 127 pub port: usize, field 133 pub port: usize, field [all …]
|
| H A D | config_rtmp_httpflv_hls.toml | 7 port = 1935 15 port = 8080 22 port = 8081
|
| H A D | config_rtmp_hls.toml | 7 port = 1935 14 port = 8080
|
| H A D | config_rtmp_httpflv.toml | 7 port = 1935 14 port = 8081
|
| H A D | config_rtmp.toml | 7 port = 1935
|
| /xiu/protocol/rtmp/src/utils/ |
| H A D | mod.rs | 13 pub port: String, field 72 self.port = data[1].to_string(); in parse_raw_domain_name() 86 pub fn append_port(&mut self, port: String) { in append_port() 88 self.raw_domain_name = format!("{}:{}", self.raw_domain_name, port); in append_port() 89 self.port = port; in append_port() 107 println!(" port: {}", parser.port); in test_rtmp_url_parser() 122 println!(" port: {}", parser.port); in test_rtmp_url_parser2()
|
| /xiu/protocol/rtsp/src/ |
| H A D | rtsp_transport.rs | 57 if let Some(port) = ports.0 { in unmarshal() 58 client_ports[0] = port; in unmarshal() 60 if let Some(port) = ports.1 { in unmarshal() 61 client_ports[1] = port; in unmarshal() 70 if let Some(port) = ports.0 { in unmarshal() 71 server_ports[0] = port; in unmarshal() 73 if let Some(port) = ports.1 { in unmarshal() 74 server_ports[1] = port; in unmarshal()
|
| /xiu/application/xiu/src/ |
| H A D | service.rs | 67 httpapi.port in start_http_api_server() 104 port = push_value.port in start_rtmp() 127 port = pull_cfg_value.port in start_rtmp() 146 let listen_port = rtmp_cfg_value.port; in start_rtmp() 205 let listen_port = rtsp_cfg_value.port; in start_rtsp() 229 let listen_port = webrtc_cfg_value.port; in start_webrtc() 250 let port = httpflv_cfg_value.port; in start_httpflv() localVariable 254 if let Err(err) = httpflv_server::run(event_producer, port).await { in start_httpflv() 285 let port = hls_cfg_value.port; in start_hls() localVariable 288 if let Err(err) = hls_server::run(port).await { in start_hls()
|
| H A D | api.rs | 88 pub async fn run(producer: StreamHubEventSender, port: usize) { in run() 117 log::info!("Http api server listening on http://0.0.0.0:{}", port); in run() 118 axum::Server::bind(&([0, 0, 0, 0], port as u16).into()) in run()
|
| /xiu/ |
| H A D | README_CN.md | 135 port = 1935 141 port = 1935 147 port = 1936 151 port = 1935 156 port = 5544 164 port = 8081 171 port = 8080 255 port = 1935 259 port = 1936 265 port = 1936 [all …]
|
| H A D | README.md | 137 port = 1935 143 port = 1935 149 port = 1936 153 port = 1935 159 port = 5544 164 port = 8900 172 port = 8081 179 port = 8080 268 port = 1935 272 port = 1936 [all …]
|
| /xiu/application/xiu/ |
| H A D | README.md | 132 port = 1935 138 port = 1935 144 port = 1936 148 port = 1935 154 port = 5544 159 port = 8900 167 port = 8081 174 port = 8080 263 port = 1935 267 port = 1936 [all …]
|
| /xiu/protocol/rtmp/ |
| H A D | README.md | 26 let address = format!("0.0.0.0:{port}", port = listen_port); 63 let address = format!("{ip}:{port}", ip = "192.168.0.2", port = 1935); 78 let address = format!("{ip}:{port}", ip = "192.168.0.3", port = "1935"); 95 let address = format!("0.0.0.0:{port}", port = listen_port);
|
| /xiu/protocol/rtsp/src/sdp/ |
| H A D | mod.rs | 62 port: usize, field 110 if let Ok(port) = para_1.parse::<usize>() { in unmarshal() 111 sdp_media.port = port; in unmarshal() 161 self.port, in marshal()
|
| /xiu/protocol/rtsp/src/http/ |
| H A D | mod.rs | 12 pub port: u16, field 52 if let Some(port) = port_val { in unmarshal() 53 rtsp_request.port = port; in unmarshal()
|
| /xiu/protocol/httpflv/ |
| H A D | README.md | 11 - Change the listening port type.
|
| /xiu/protocol/webrtc/src/http/ |
| H A D | mod.rs | 25 pub port: u16, field 101 if let Some(port) = port_val { in unmarshal() 102 http_request.port = port; in unmarshal()
|
| /xiu/protocol/hls/ |
| H A D | README.md | 16 Change the listening port type.
|
| /xiu/protocol/httpflv/src/ |
| H A D | server.rs | 63 pub async fn run(event_producer: StreamHubEventSender, port: usize) -> Result<()> { in run()
|
| /xiu/protocol/hls/src/ |
| H A D | server.rs | 72 pub async fn run(port: usize) -> Result<()> { in run()
|
| /xiu/library/bytesio/src/ |
| H A D | bytesio.rs | 55 return Some(local_addr.port()); in get_local_port()
|