Proto protocol structure.

This commit is contained in:
Ian Gulliver
2016-02-23 15:19:56 -08:00
parent 606a2029ee
commit a98eeec91e
7 changed files with 585 additions and 4 deletions

9
adsbus/proto.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#include <stdbool.h>
struct buf;
struct packet;
bool proto_parse(struct buf *, struct packet *, void *);
void proto_serialize(struct packet *, struct buf *);