RTSP response parse of Status-Line (original) (raw)
RFC2326 (7.1) tells that RTSP response is started with Status line, where its syntax is following:
Status-Line = RTSP-Version SP Status-Code SP Reason-Phrase CRLF
and 7.1.1 says that "The client is not required to examine or display the Reason-Phrase", and the library does examin its existence, and throws error when the Reason-Phrase is missing.
Expected behavior: The library should not throw an error on missing Reason-Phrase.
File: "pkg/base/response.go", line: 147