aboutsummaryrefslogtreecommitdiffstats
path: root/include/protocol.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/protocol.h')
-rw-r--r--include/protocol.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/protocol.h b/include/protocol.h
index 5a9c2cc..db651ea 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -75,7 +75,7 @@
* Structures
*/
-struct ipc_header {
+struct ipc_fmt_header {
unsigned short length;
unsigned char mseq;
unsigned char aseq;
@@ -84,6 +84,12 @@ struct ipc_header {
unsigned char type;
} __attribute__((__packed__));
+struct ipc_rfs_header {
+ unsigned int length;
+ unsigned char index;
+ unsigned char id;
+} __attribute__((__packed__));
+
#endif
// vim:ts=4:sw=4:expandtab