Home
last modified time | relevance | path

Searched refs:response (Results 1 – 5 of 5) sorted by relevance

/xiu/library/streamhub/src/notify/
H A Dmod.rs37 Ok(response) => { in on_publish_notify()
38 log::info!("on_publish success: {:?}", response); in on_publish_notify()
56 Ok(response) => { in on_unpublish_notify()
57 log::info!("on_unpublish success: {:?}", response); in on_unpublish_notify()
75 Ok(response) => { in on_play_notify()
76 log::info!("on_play success: {:?}", response); in on_play_notify()
94 Ok(response) => { in on_stop_notify()
95 log::info!("on_stop success: {:?}", response); in on_stop_notify()
/xiu/protocol/webrtc/src/session/
H A Dmod.rs118 self.send_response(&response).await?; in run()
230 self.send_response(&response).await?; in run()
280 response in publish_whip()
286 response in publish_whip()
295 self.send_response(&response).await in publish_whip()
394 response in subscribe_whep()
400 response in subscribe_whep()
408 self.send_response(&response).await in subscribe_whep()
494 response in gen_file_response()
497 response.body = Some(contents_str); in gen_file_response()
[all …]
/xiu/protocol/rtsp/src/session/
H A Dmod.rs222 self.send_response(&response).await?; in handle_options()
258 response.body = Some(sdp); in handle_describe()
259 response in handle_describe()
262 self.send_response(&response).await?; in handle_describe()
395 response in handle_setup()
398 response in handle_setup()
549 response in handle_record()
552 response in handle_record()
645 let mut response = RtspResponse { in gen_response() localVariable
653 response in gen_response()
[all …]
/xiu/application/xiu/src/
H A Dapi.rs99 Ok(response) => response, in run()
107 Ok(response) => response, in run()
/xiu/protocol/webrtc/src/http/
H A Dmod.rs476 let response = "HTTP/1.1 201 Created\r\n\ in test_parse_http_response() localVariable
528 if let Some(parser) = HttpResponse::unmarshal(response) { in test_parse_http_response()
532 assert_eq!(response, marshal_result); in test_parse_http_response()