increase maximum length of content of RTSP requests/responses to 128k (https://github.com/aler9/rtsp-simple-server/issues/136)

This commit is contained in:
aler9
2020-11-27 13:55:15 +01:00
parent 8305ca75f0
commit 23defc5438

View File

@@ -6,7 +6,7 @@ import (
)
const (
rtspMaxContentLength = 4096
rtspMaxContentLength = 128 * 1024
)
func readByteEqual(rb *bufio.Reader, cmp byte) error {