54 #define STK_SEQUENCE_ID_INVALID 0
57 #define STK_SEQUENCE_TYPE_INVALID 0
58 #define STK_SEQUENCE_TYPE_DATA 1
59 #define STK_SEQUENCE_TYPE_KVPAIR 2
60 #define STK_SEQUENCE_TYPE_MGMT 3
61 #define STK_SEQUENCE_TYPE_REQUEST 4
62 #define STK_SEQUENCE_TYPE_QUERY 5
63 #define STK_SEQUENCE_TYPE_SUBSCRIBE 6
66 #define STK_SEQ_TYPE_TO_STRING(_type) \
67 _type == STK_SEQUENCE_TYPE_DATA ? "Data" : \
68 _type == STK_SEQUENCE_TYPE_MGMT ? "Management" : \
69 _type == STK_SEQUENCE_TYPE_KVPAIR ? "Key/Value Pair" : \
70 _type == STK_SEQUENCE_TYPE_REQUEST ? "Request" : \
71 _type == STK_SEQUENCE_TYPE_QUERY ? "Query" : \