lsl_protocol_version function
Protocol version.
The major version is protocol_version() / 100;
The minor version is protocol_version() % 100;
Clients with different minor versions are protocol-compatible while clients with different major versions will refuse to work together.
Implementation
@ffi.Native<NativeLsl_protocol_version>()
external int lsl_protocol_version();