Skip to content

Commit

Permalink
generated code
Browse files Browse the repository at this point in the history
  • Loading branch information
DanG100 committed Sep 27, 2023
1 parent a2847f0 commit 7e3ae70
Show file tree
Hide file tree
Showing 78 changed files with 28,853 additions and 20,944 deletions.
28,901 changes: 15,703 additions & 13,198 deletions dataplane/standalone/proto/common.pb.go

Large diffs are not rendered by default.

719 changes: 515 additions & 204 deletions dataplane/standalone/proto/common.proto

Large diffs are not rendered by default.

340 changes: 260 additions & 80 deletions dataplane/standalone/proto/fdb.pb.go

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions dataplane/standalone/proto/fdb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,21 @@ message GetFdbEntryAttributeResponse {
FdbEntryAttribute attr = 1;
}

message CreateFdbEntriesRequest {
repeated CreateFdbEntryRequest reqs = 1;
}

message CreateFdbEntriesResponse {
repeated CreateFdbEntryResponse resps = 1;
}

service Fdb {
rpc CreateFdbEntry(CreateFdbEntryRequest) returns (CreateFdbEntryResponse) {}
rpc RemoveFdbEntry(RemoveFdbEntryRequest) returns (RemoveFdbEntryResponse) {}
rpc SetFdbEntryAttribute(SetFdbEntryAttributeRequest)
returns (SetFdbEntryAttributeResponse) {}
rpc GetFdbEntryAttribute(GetFdbEntryAttributeRequest)
returns (GetFdbEntryAttributeResponse) {}
rpc CreateFdbEntries(CreateFdbEntriesRequest)
returns (CreateFdbEntriesResponse) {}
}
248 changes: 214 additions & 34 deletions dataplane/standalone/proto/lag.pb.go

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions dataplane/standalone/proto/lag.proto
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@ message GetLagMemberAttributeResponse {
LagMemberAttribute attr = 1;
}

message CreateLagMembersRequest {
repeated CreateLagMemberRequest reqs = 1;
}

message CreateLagMembersResponse {
repeated CreateLagMemberResponse resps = 1;
}

service Lag {
rpc CreateLag(CreateLagRequest) returns (CreateLagResponse) {}
rpc RemoveLag(RemoveLagRequest) returns (RemoveLagResponse) {}
Expand All @@ -127,4 +135,6 @@ service Lag {
returns (SetLagMemberAttributeResponse) {}
rpc GetLagMemberAttribute(GetLagMemberAttributeRequest)
returns (GetLagMemberAttributeResponse) {}
rpc CreateLagMembers(CreateLagMembersRequest)
returns (CreateLagMembersResponse) {}
}
366 changes: 273 additions & 93 deletions dataplane/standalone/proto/mpls.pb.go

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions dataplane/standalone/proto/mpls.proto
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ message GetInsegEntryAttributeResponse {
InsegEntryAttribute attr = 1;
}

message CreateInsegEntriesRequest {
repeated CreateInsegEntryRequest reqs = 1;
}

message CreateInsegEntriesResponse {
repeated CreateInsegEntryResponse resps = 1;
}

service Mpls {
rpc CreateInsegEntry(CreateInsegEntryRequest)
returns (CreateInsegEntryResponse) {}
Expand All @@ -81,4 +89,6 @@ service Mpls {
returns (SetInsegEntryAttributeResponse) {}
rpc GetInsegEntryAttribute(GetInsegEntryAttributeRequest)
returns (GetInsegEntryAttributeResponse) {}
rpc CreateInsegEntries(CreateInsegEntriesRequest)
returns (CreateInsegEntriesResponse) {}
}
Loading

0 comments on commit 7e3ae70

Please sign in to comment.