vrmodel

view include/proto.h @ 2:be91b72ce3f9

foobar
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 30 Aug 2014 21:46:37 +0300
parents
children a32b151fb3c6
line source
1 #ifndef PROTO_H_
2 #define PROTO_H_
4 #define DEF_PORT 0x6d0f
6 #define MAGIC 0x6d0f
7 /* requests */
8 #define REQ_DISCOVER 1
9 #define REQ_START 2
10 #define REQ_STOP 3
11 /* responses */
12 #define RSP_OK 0
13 #define RSP_ERR 255
16 struct message {
17 int magic;
18 int type;
19 char data[24];
20 };
23 #endif /* PROTO_H_ */