1// Copyright 2021 gRPC authors. 2// 3// Licensed under the Apache License, Version 2.0 (the "License"); 4// you may not use this file except in compliance with the License. 5// You may obtain a copy of the License at 6// 7// http://www.apache.org/licenses/LICENSE-2.0 8// 9// Unless required by applicable law or agreed to in writing, software 10// distributed under the License is distributed on an "AS IS" BASIS, 11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12// See the License for the specific language governing permissions and 13// limitations under the License. 14 15syntax = "proto3"; 16 17package hpack_parser_fuzzer; 18 19import "test/core/test_util/fuzz_config_vars.proto"; 20 21message Empty {} 22 23message Frame { 24 bool end_of_headers = 1; 25 bool end_of_stream = 2; 26 bool priority = 3; 27 int32 stop_buffering_after_segments = 4; 28 int32 max_metadata_length = 5; 29 repeated bytes parse = 6; 30 int32 absolute_max_metadata_length = 7; 31} 32 33message Msg { 34 repeated Frame frames = 2; 35 grpc.testing.FuzzConfigVars config_vars = 3; 36 repeated uint64 random_numbers = 4; 37} 38