lsl_protocol_version function

  1. @Native<NativeLsl_protocol_version>()
int lsl_protocol_version()

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();