go-rfb/encoding_desktopsize.go
Vasiliy Tolstov 8fd511bb01 rename package
Signed-off-by: Vasiliy Tolstov <v.tolstov@sdstack.com>
2018-07-27 16:55:06 +03:00

20 lines
515 B
Go

package rfb
// DesktopSizePseudoEncoding represents a desktop size message from the server.
type DesktopSizePseudoEncoding struct{}
func (*DesktopSizePseudoEncoding) Supported(Conn) bool {
return true
}
func (*DesktopSizePseudoEncoding) Type() EncodingType { return EncDesktopSizePseudo }
// Read implements the Encoding interface.
func (*DesktopSizePseudoEncoding) Read(c Conn, rect *Rectangle) error {
return nil
}
func (enc *DesktopSizePseudoEncoding) Write(c Conn, rect *Rectangle) error {
return nil
}