From c88bf3005666b2af79f4cd0745b945f800ec5117 Mon Sep 17 00:00:00 2001 From: Reuben Miller Date: Tue, 14 May 2024 20:58:26 +0200 Subject: [PATCH] fixup! fixup! feat: support simple remote access service api --- pkg/c8y/remoteaccess.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkg/c8y/remoteaccess.go b/pkg/c8y/remoteaccess.go index f97311dc..d6b9f7e9 100644 --- a/pkg/c8y/remoteaccess.go +++ b/pkg/c8y/remoteaccess.go @@ -6,6 +6,13 @@ import ( "net/http" ) +const ( + RemoteAccessProtocolPassthrough = "PASSTHROUGH" + RemoteAccessProtocolSSH = "SSH" + RemoteAccessProtocolVNC = "VNC" + RemoteAccessProtocolTelnet = "TELNET" +) + // RemoteAccessService type RemoteAccessService service