From 93e9d17b05f0c3147fbef43d103ddfa031a4f042 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 20 Jun 2009 19:04:31 +0200 Subject: replace 'struct gsm_attr' by 'struct tlv_parsed' This is where we will store the 12.21 / NM attributes for the given object. --- openbsc/include/openbsc/gsm_data.h | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'openbsc') diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h index 8c44ba54d..54ce7e6fd 100644 --- a/openbsc/include/openbsc/gsm_data.h +++ b/openbsc/include/openbsc/gsm_data.h @@ -42,6 +42,7 @@ enum gsm_chreq_reason_t { #include #include #include +#include #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) @@ -137,10 +138,6 @@ struct gsm_nm_state { u_int8_t administrative; u_int8_t availability; }; -struct gsm_attr { - u_int8_t len; - u_int8_t data[0]; -}; /* * LOCATION UPDATING REQUEST state @@ -203,7 +200,7 @@ struct gsm_bts_trx_ts { unsigned int flags; struct gsm_nm_state nm_state; - struct gsm_attr *nm_attr; + struct tlv_parsed nm_attr; /* To which E1 subslot are we connected */ struct gsm_e1_subslot e1_link; @@ -225,7 +222,7 @@ struct gsm_bts_trx { /* how do we talk RSL with this TRX? */ struct e1inp_sign_link *rsl_link; struct gsm_nm_state nm_state; - struct gsm_attr *nm_attr; + struct tlv_parsed nm_attr; struct { struct gsm_nm_state nm_state; } bb_transc; @@ -318,7 +315,7 @@ struct gsm_bts { /* Abis network management O&M handle */ struct abis_nm_h *nmh; struct gsm_nm_state nm_state; - struct gsm_attr *nm_attr; + struct tlv_parsed nm_attr; /* number of this BTS on given E1 link */ u_int8_t bts_nr; -- cgit v1.2.3