aboutsummaryrefslogtreecommitdiffstats
path: root/internal/pkg/nfnNotify/proto/nfn.proto
diff options
context:
space:
mode:
Diffstat (limited to 'internal/pkg/nfnNotify/proto/nfn.proto')
-rw-r--r--internal/pkg/nfnNotify/proto/nfn.proto8
1 files changed, 7 insertions, 1 deletions
diff --git a/internal/pkg/nfnNotify/proto/nfn.proto b/internal/pkg/nfnNotify/proto/nfn.proto
index 85e2131..02855e7 100644
--- a/internal/pkg/nfnNotify/proto/nfn.proto
+++ b/internal/pkg/nfnNotify/proto/nfn.proto
@@ -25,12 +25,14 @@ message Notification {
message ProviderNetworkCreate {
string provider_nw_name = 1;
VlanInfo vlan = 2;
+ DirectInfo direct =3;
// Add other types supported here beyond vlan
}
message ProviderNetworkRemove {
string provider_nw_name = 1;
string vlan_logical_intf = 2;
+ string direct_provider_intf = 3;
// Add other types supported here
}
@@ -40,5 +42,9 @@ message VlanInfo {
string logical_intf = 3;
}
+message DirectInfo {
+ string provider_intf = 1;
+}
+
message InSync {
-} \ No newline at end of file
+}