Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 727 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 727 Bytes

libFLNL

C++ Fast Light Network Library for simple real-time data exchange

Features:

  • Exhange of a fixed number of double values and simple characters commands between a server and a client
  • No buffering: only last received values are available
  • Fixed predefined frame size
  • Simple data integrity check
  • Based on BSD sockets
  • Windows and Unix

Warning

The library transmit double values as bytes and ASSUMES the same representation of double types on both sides. A simple bytes size is performed at runtime and it will work just fine on most modern compiler BUT you should perform a manual check to ensure that the transmitted values are correct before proper use.

Requirements

The library uses pthread.