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 fuzzing_event_engine;
18
19message Actions {
20    reserved 1;
21    // How much to delay each task by, in nanoseconds.
22    repeated uint64 run_delay = 2;
23    // Order in which to bind port numbers.
24    // After this ports are assigned in order, from 1 to 65535.
25    repeated uint32 assign_ports = 3;
26    // Write size constraints for each connection, in order of creation.
27    repeated Connection connections = 4;
28};
29
30message Connection {
31    repeated uint32 write_size = 1;
32};
33