increase maximum length of urls, header keys and values

This commit is contained in:
aler9
2020-03-13 14:18:35 +01:00
parent 6ca36620dc
commit 13b7bffbba
2 changed files with 12 additions and 6 deletions

View File

@@ -8,8 +8,8 @@ import (
const (
_MAX_HEADER_COUNT = 255
_MAX_HEADER_KEY_LENGTH = 255
_MAX_HEADER_VALUE_LENGTH = 255
_MAX_HEADER_KEY_LENGTH = 1024
_MAX_HEADER_VALUE_LENGTH = 1024
)
// Header is a RTSP reader, present in both Requests and Responses.