The Open Lighting Project has moved!
We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
We've launched our new site at www.openlighting.org. This wiki will remain and be updated with more technical information.
RPC Protocol
From wiki.openlighting.org
OLA is a client / server architecture.
Data passed between the client and the server is serialized using Protocol Buffers.
Simple Example
From common/rpc/Rpc.proto,
message RpcMessage { required Type type = 1; optional uint32 id = 2; optional string name = 3; optional bytes buffer = 4; }
common/protocol/