add check for header and value
This commit is contained in:
parent
514540b90b
commit
dc411651b6
|
@ -166,6 +166,7 @@ class HttpProtocol(asyncio.Protocol):
|
|||
def on_header(self, name, value):
|
||||
print(f'header "{name}": "{value}"')
|
||||
|
||||
if name and value:
|
||||
if name == b'Content-Length' and int(value) > self.request_max_size:
|
||||
exception = PayloadTooLarge('Payload Too Large')
|
||||
self.write_error(exception)
|
||||
|
|
Loading…
Reference in New Issue
Block a user