repositorypackage
0.0.0-20171220234551-a2352a89d118
Repository: https://github.com/kward/go-vnc.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# README
VNC Library for Go
go-vnc is a VNC client library for Go.
This library implements RFC 6143 -- The Remote Framebuffer Protocol -- the protocol used by VNC.
Project links
Setup
-
Download software and supporting packages.
$ go get github.com/kward/go-vnc $ go get golang.org/x/net
Usage
Sample code usage is available in the GoDoc.
- Connect and listen to server messages: https://godoc.org/github.com/kward/go-vnc#example-Connect
The source code is laid out such that the files match the document sections:
- [7.1] handshake.go
- [7.2] security.go
- [7.3] initialization.go
- [7.4] pixel_format.go
- [7.5] client.go
- [7.6] server.go
- [7.7] encodings.go
There are two additional files that provide everything else:
- vncclient.go -- code for instantiating a VNC client
- common.go -- common stuff not related to the RFB protocol