blob: 3f41c4161f571566721aa257ab3f2bb3e4c75fc1 [file] [log] [blame]
Harald Weltea2db75f2015-12-22 22:11:27 +01001#include <osmocom/core/utils.h>
2#include <osmocom/core/prim.h>
3
Harald Welte2d2e2cc2016-04-25 12:11:20 +02004/*! \brief human-readable string mapping for
5 * \ref osmo_prim_operation */
Harald Weltea2db75f2015-12-22 22:11:27 +01006const struct value_string osmo_prim_op_names[5] = {
7 { PRIM_OP_REQUEST, "request" },
8 { PRIM_OP_RESPONSE, "response" },
9 { PRIM_OP_INDICATION, "indication" },
10 { PRIM_OP_CONFIRM, "confirm" },
11 { 0, NULL }
12};