guacamole in progress

This commit is contained in:
2026-02-12 15:43:03 +01:00
parent 9a333bb1c8
commit 5801b29f22
6 changed files with 168 additions and 2 deletions

View File

@@ -1,13 +1,19 @@
// See https://aka.ms/new-console-template for more information
using CollabVM.Server;
using RemoteFrameBuffer;
using RemoteFrameBuffer.Client;
using System.Net;
IPAddress tessia = new([192,168,16,253]);
/*IPAddress tessia = new([192,168,16,253]);
IRemoteFrameBufferClientStreamProvider tessia6001vnc = new RemoteFrameBufferTcpClientStreamProvider(tessia, 5901);
RemoteFramebufferClient client = new(tessia6001vnc);
client.Start();
Console.ReadLine();
client.Stop();
client.Stop();*/
CollabVMHttpServer httpServer = new(new([100,65,0,14]), 6004, true);
httpServer.AddServer("vmx", new());
httpServer.Start();
Console.ReadLine();