Home
last modified time | relevance | path

Searched refs:method (Results 1 – 6 of 6) sorted by relevance

/xiu/protocol/webrtc/src/clients/
H A Dwhep.js77 method: "POST", property
164 method: "POST", property
348 method: "PATCH", property
387 method: "POST", property
408 method: "POST", property
428 method: "DELETE", property
462 method: "DELETE", property
/xiu/protocol/rtsp/src/http/
H A Dmod.rs8 pub method: String, field
34 if let Some(method) = fields.next() { in unmarshal()
35 rtsp_request.method = method.to_string(); in unmarshal()
88 let mut request_str = format!("{} {} {}\r\n", self.method, self.url, self.version); in marshal()
/xiu/protocol/webrtc/src/http/
H A Dmod.rs23 pub method: String, field
64 if let Some(method) = fields.next() { in unmarshal()
65 http_request.method = method.to_string(); in unmarshal()
134 let mut request_str = format!("{} {} {}\r\n", self.method, full_path, self.version); in marshal()
/xiu/protocol/webrtc/src/
H A Dwebrtc.rs50 match http_request_data.method.as_str() { in run()
/xiu/protocol/webrtc/src/session/
H A Dmod.rs106 let request_method = http_request.method.as_str(); in run()
235 http_request.method in run()
/xiu/protocol/rtsp/src/session/
H A Dmod.rs181 match rtsp_request.method.as_str() { in on_rtsp_message()