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

11
adsbus/proto.c Normal file
View File

@@ -0,0 +1,11 @@
#include "buf.h"
#include "packet.h"
#include "proto.h"
bool proto_parse(struct buf *buf, struct packet *packet, void *state_in) {
return false;
}
void proto_serialize(struct packet *packet, struct buf *buf) {
}