summaryrefslogtreecommitdiff
path: root/h
diff options
context:
space:
mode:
Diffstat (limited to 'h')
-rw-r--r--h/zephyr/zephyr.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/h/zephyr/zephyr.h b/h/zephyr/zephyr.h
index ac42bb0..f23bb19 100644
--- a/h/zephyr/zephyr.h
+++ b/h/zephyr/zephyr.h
@@ -59,9 +59,10 @@ typedef char ZPacket_t[Z_MAXPKTLEN];
/* Packet type */
typedef enum {
- UNSAFE, UNACKED, ACKED, HMACK, HMCTL, SERVACK, SERVNAK, CLIENTACK, STAT
+ UNSAFE = 0, UNACKED = 1, ACKED = 2, HMACK = 3, HMCTL = 4, SERVACK = 5,
+ SERVNAK = 6, CLIENTACK = 7, STAT = 8
} ZNotice_Kind_t;
-extern const char *ZNoticeKinds[9];
+extern const char * const ZNoticeKinds[9];
struct _ZTimeval {
int tv_sec;