mirror of
https://github.com/aler9/gortsplib
synced 2025-10-17 20:51:09 +08:00
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:
@@ -6,7 +6,7 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
rtspMaxContentLength = 4096
|
||||
rtspMaxContentLength = 128 * 1024
|
||||
)
|
||||
|
||||
func readByteEqual(rb *bufio.Reader, cmp byte) error {
|
||||
|
Reference in New Issue
Block a user