Files
PVabel2026/RemoteFrameBuffer/Client/RemoteFrameBufferClientProtocol.cs

19 lines
447 B
C#
Raw Normal View History

2026-02-05 15:34:59 +01:00
using RemoteFrameBuffer.Common;
namespace RemoteFrameBuffer.Client
{
public abstract class RemoteFrameBufferClientProtocol
{
protected readonly Stream vncStream;
public abstract RfbProtoVersion Version { get; }
public RemoteFrameBufferClientProtocol(Stream s)
{
this.vncStream = s;
}
public abstract void Handshake();
public abstract void Initialization();
}
}