diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | falgproto/falgproto.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 9642360..77fea34 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. # vim: set sw=4 ts=4 sts=4 et: -AC_INIT([fastalg-protocol], [0.1.2], [BUG-REPORT-ADDRESS]) +AC_INIT([fastalg-protocol], [0.1.3], [BUG-REPORT-ADDRESS]) AC_CONFIG_SRCDIR([falgproto/falgproto.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/falgproto/falgproto.h b/falgproto/falgproto.h index a76dd72..396ada0 100644 --- a/falgproto/falgproto.h +++ b/falgproto/falgproto.h @@ -22,9 +22,10 @@ typedef enum falgproto_transport { typedef struct falgproto_packet { struct falgproto_packet* next; - void* data; /* unused (may be used by caller to store data) */ char* payload; /* packet payload */ size_t len; /* packet payload length */ + void* state; /* unused (may be used by callee to store data) */ + void* data; /* unused (may be used by caller to store data) */ } FalgprotoPacket; typedef struct falgproto_param { |