diff options
author | Harald Welte <laforge@gnumonks.org> | 2012-06-24 21:52:07 +0200 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2012-06-24 21:52:07 +0200 |
commit | c17f57053802c8b151df38169b73eef804ce2b3e (patch) | |
tree | 3df988e757ad70507357d934ea62ca57aa40c945 /include/osmocom/gsm | |
parent | c2a25c67f8b423beb3b75d526044fd9f2cc5ac1a (diff) |
ganc: add value_strings for GAN message type and protocol discriminator
Diffstat (limited to 'include/osmocom/gsm')
-rw-r--r-- | include/osmocom/gsm/Makefile.am | 2 | ||||
-rw-r--r-- | include/osmocom/gsm/gan.h | 9 |
2 files changed, 10 insertions, 1 deletions
diff --git a/include/osmocom/gsm/Makefile.am b/include/osmocom/gsm/Makefile.am index fc1abfe8..60ba48b9 100644 --- a/include/osmocom/gsm/Makefile.am +++ b/include/osmocom/gsm/Makefile.am @@ -1,7 +1,7 @@ osmogsm_HEADERS = a5.h comp128.h gsm0808.h gsm48_ie.h mncc.h rxlev_stat.h \ gsm0480.h gsm48.h gsm_utils.h rsl.h tlv.h abis_nm.h \ sysinfo.h prim.h gsm0502.h lapd_core.h lapdm.h \ - gsm0411_utils.h gsm0411_smc.h gsm0411_smr.h + gsm0411_utils.h gsm0411_smc.h gsm0411_smr.h gan.h SUBDIRS = protocol diff --git a/include/osmocom/gsm/gan.h b/include/osmocom/gsm/gan.h new file mode 100644 index 00000000..ab4c1e4e --- /dev/null +++ b/include/osmocom/gsm/gan.h @@ -0,0 +1,9 @@ +#ifndef _OSMO_GSM_GAN_H +#define _OSMO_GSM_GAN_H + +#include <osmocom/core/utils.h> + +extern const struct value_string gan_msgt_vals[]; +static const struct value_string gan_pdisc_vals[]; + +#endif |