Fix missing HTTP/1.0 proto enums

This commit is contained in:
David Stotijn
2022-02-27 17:55:41 +01:00
parent c5f76e1f9a
commit 8269af9478
9 changed files with 40 additions and 28 deletions

View File

@ -62,8 +62,9 @@ export enum HttpMethod {
}
export enum HttpProtocol {
Http1 = 'HTTP1',
Http2 = 'HTTP2'
Http10 = 'HTTP10',
Http11 = 'HTTP11',
Http20 = 'HTTP20'
}
export type HttpRequestLog = {