Explorar el Código

Add PATCH TRACE http method to sniffer (#1314)

ayanamist hace 4 años
padre
commit
80d92381af
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      common/protocol/http/sniff.go

+ 2 - 1
common/protocol/http/sniff.go

@@ -37,7 +37,8 @@ func (h *SniffHeader) Domain() string {
 }
 
 var (
-	methods = [...]string{"get", "post", "head", "put", "delete", "options", "connect"}
+	// refer to https://pkg.go.dev/net/http@master#pkg-constants
+	methods = [...]string{"get", "post", "head", "put", "delete", "options", "connect", "patch", "trace"}
 
 	errNotHTTPMethod = errors.New("not an HTTP method")
 )