A VNC server providing a custom framebuffer. https://code.ivysaur.me/libvncd
This repository has been archived on 2020-05-03. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
mappu 9069b2fe64 commit all archived files 2015-09-13 00:00:00 +00:00
dist-archive commit all archived files 2015-09-13 00:00:00 +00:00
doc commit all archived files 2015-09-13 00:00:00 +00:00
.legacy-codesite.toml initial meta commit 2015-09-13 00:00:00 +00:00
README.md commit all archived files 2015-09-13 00:00:00 +00:00

README.md

libvncd

A VNC server providing a custom framebuffer.

You can inherit from the VncdConnection class as per the sample, and respond to the simple framebuffer and input callbacks. This design allows using the VNC/RFB protocol as a wrapper for arbitrary graphical tasks.

Features

  • Supports raw, zlib, ZRLE, and TightPNG image encoding
  • Supports optional VNC authentication
  • Single-threaded asynchronous design supporting multiple simultaneous clients
  • Tested working with TightVNC Viewer 2.7 and RealVNC Viewer 4.1
  • Tested compilation with Visual Studio 2013, but cross-platform/compiler ports should be trivial
  • Designed to be connected to a custom framebuffer implementation

License

Unlike most other VNC implementations (e.g. libvncserver, QEMU-kvm, and RealVNC), no code in this project is based on the original GPL'd source code release of AT&T VNC. This project is a clean implementation from RFC6143, made freely available under non-copyleft software license (along with all its bundled dependencies):

  • libvncd, by the libvncd author. (ISC license)
  • ASIO, by Christopher M. Kohlhoff. (Boost Software License)
  • D3DES, by Richard Outerbridge. (Public Domain)
  • miniz, by Rich Geldreich. (Public Domain)
  • X11 (for keysymdef.h), by The Open Group. (MIT/X11 License)

See Also

Changelog

2015-09-13 r61