#ifndef OSMO_PRIMITIVE_H #define OSMO_PRIMITIVE_H #include 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