Creating extension for ZnConstants.

This commit is contained in:
ruidajo 2024-05-21 11:37:31 -05:00
parent 6433da508a
commit c9b214f633
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
Extension { #name : #ZnConstants }
{ #category : #'*MiniDocs' }
ZnConstants class >> maximumLineLength [
"Return the maximum line length to accept.
Used by ZnLineReader and thus for reading request/status lines as well as headers.
This helps to protect us from malicious content."
^ 5096 "8192"
]