libei/proto
Peter Hutterer 8d7d6ca8b7 proto: drop the Packet message, replace with 4 byte prefix
We need some sort of length field to be able to know how long the next
message is. But for simplicity, we might as well just write that
explicitly on the wire instead of wrapping our messages into yet another
message. This makes the wire format slightly simpler since the first 4
bytes are now always the length, without the previous 0x0d prefix
caused by the protobuf encoding.

0x0d == (field number << 3) | wire_type == 1 << 3 | 5
(see https://protobuf.dev/programming-guides/encoding/#structure)
2023-02-09 11:47:45 +10:00
..
ei.proto proto: drop the Packet message, replace with 4 byte prefix 2023-02-09 11:47:45 +10:00
meson.build Replace the custom message parsing with protobuf 2020-07-31 13:05:11 +10:00