Home
last modified time | relevance | path

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

/xiu/protocol/rtsp/src/http/
H A Dmod.rs116 let mut rtsp_response = RtspResponse::default(); in unmarshal() localVariable
125 rtsp_response.version = version.to_string(); in unmarshal()
129 rtsp_response.status_code = status; in unmarshal()
133 rtsp_response.reason_phrase = reason_phrase.to_string(); in unmarshal()
141 rtsp_response.headers.insert(name, value); in unmarshal()
151 rtsp_response.body = Some(request_data[header_end_idx..].to_string()); in unmarshal()
154 Some(rtsp_response) in unmarshal()