From b88f81660e79ad8a457c34f47a1b1093e32e0756 Mon Sep 17 00:00:00 2001 From: MICHAL MALKA Date: Tue, 7 Nov 2023 10:14:32 +0200 Subject: [PATCH] Update events.go Signed-off-by: MICHAL MALKA --- pkg/controlplane/eventmanager/events.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkg/controlplane/eventmanager/events.go b/pkg/controlplane/eventmanager/events.go index 5126ab6c0..e29513ee3 100644 --- a/pkg/controlplane/eventmanager/events.go +++ b/pkg/controlplane/eventmanager/events.go @@ -64,13 +64,13 @@ type ConnectionRequestAttr struct { SrcService string DstService string Direction Direction - OtherPeer string //Optional: Would not be set if its an outgoing connection + OtherPeer string //Optional: Would not be set if its an outgoing connection } type ConnectionRequestResp struct { - Action Action + Action Action TargetPeer string - BitRate int // Mbps + BitRate int // Mbps } type ConnectionStatusAttr struct { @@ -93,7 +93,7 @@ type NewRemoteServiceAttr struct { type RemoveRemoteServiceAttr struct { Service string - Peer string + Peer string } type NewRemoteServiceResp struct { @@ -105,7 +105,7 @@ type ExposeRequestAttr struct { } type ExposeRequestResp struct { - Action Action + Action Action TargetPeers []string }