update docs

This commit is contained in:
aler9
2020-05-08 23:38:30 +02:00
parent 7fece056dd
commit 3b233ef7e9
5 changed files with 28 additions and 8 deletions

View File

@@ -32,9 +32,16 @@ const (
// Request is a RTSP request.
type Request struct {
Method Method
Url *url.URL
Header Header
// request method
Method Method
// request url
Url *url.URL
// map of header values
Header Header
// optional content
Content []byte
}