diff options
author | Harald Welte <laforge@gnumonks.org> | 2011-06-23 14:14:20 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2011-06-23 14:14:20 +0200 |
commit | 9b21e88367eea8cdf200cf06fae99dec06e712a7 (patch) | |
tree | 14a065f42c91774ea90b190ee13997859e1ac5c3 /include/osmocom/core/prim.h | |
parent | 0849c9af2a5637da5ce24118e2f4b9ab9da9c6d9 (diff) |
add new 'prim.h' header file for primitives
Diffstat (limited to 'include/osmocom/core/prim.h')
-rw-r--r-- | include/osmocom/core/prim.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/osmocom/core/prim.h b/include/osmocom/core/prim.h new file mode 100644 index 00000000..5494f3c3 --- /dev/null +++ b/include/osmocom/core/prim.h @@ -0,0 +1,20 @@ +#ifndef OSMO_PRIMITIVE_H +#define OSMO_PRIMITIVE_H + +#include <stdint.h> + +enum osmo_prim_operation { + PRIM_OP_REQUEST, + PRIM_OP_RESPONSE, + PRIM_OP_INDICATION, + PRIM_OP_CONFIRM, +}; + +struct osmo_prim_hdr { + unsigned int sap; + unsigned int primitive; + enum osmo_prim_operation operation; + struct msgb *msg; /* message containing associated data */ +}; + +#endif |