Skip to content

Commit

Permalink
Merge pull request #1 from open-traffic-generator/add_operation
Browse files Browse the repository at this point in the history
add operation
  • Loading branch information
ANISH-GOTTAPU authored Jul 30, 2024
2 parents 2fedd2b + 73177ad commit 9c43cbc
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 5 deletions.
11 changes: 11 additions & 0 deletions artifacts/l1s_pb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,17 @@ message Config {

// Connection between ports within a switch.
repeated Link links = 1;

message Operation {
enum Enum {
unspecified = 0;
CREATE = 1;
DELETE = 2;
}
}
// Operation to Create or Delete Links
// default = Operation.Enum.create
optional Operation.Enum operation = 2;
}

// Link between the Ports.
Expand Down
Loading

0 comments on commit 9c43cbc

Please sign in to comment.