Home
last modified time | relevance | path

Searched refs:port (Results 1 – 22 of 22) sorted by relevance

/xiu/application/xiu/src/config/
H A Dconfig.toml7 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 Dmod.rs34 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 Dconfig_rtmp_httpflv_hls.toml7 port = 1935
15 port = 8080
22 port = 8081
H A Dconfig_rtmp_hls.toml7 port = 1935
14 port = 8080
H A Dconfig_rtmp_httpflv.toml7 port = 1935
14 port = 8081
H A Dconfig_rtmp.toml7 port = 1935
/xiu/protocol/rtmp/src/utils/
H A Dmod.rs13 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 Drtsp_transport.rs57 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 Dservice.rs67 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 Dapi.rs88 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 DREADME_CN.md135 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 DREADME.md137 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 DREADME.md132 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 DREADME.md26 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 Dmod.rs62 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 Dmod.rs12 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 DREADME.md11 - Change the listening port type.
/xiu/protocol/webrtc/src/http/
H A Dmod.rs25 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 DREADME.md16 Change the listening port type.
/xiu/protocol/httpflv/src/
H A Dserver.rs63 pub async fn run(event_producer: StreamHubEventSender, port: usize) -> Result<()> { in run()
/xiu/protocol/hls/src/
H A Dserver.rs72 pub async fn run(port: usize) -> Result<()> { in run()
/xiu/library/bytesio/src/
H A Dbytesio.rs55 return Some(local_addr.port()); in get_local_port()