...

Source file src/github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/httprule/fuzz.go

Documentation: github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway/httprule

     1  // +build gofuzz
     2  
     3  package httprule
     4  
     5  func Fuzz(data []byte) int {
     6  	_, err := Parse(string(data))
     7  	if err != nil {
     8  		return 0
     9  	}
    10  	return 0
    11  }
    12  

View as plain text