diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-03-25 12:11:38 +0800 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-03-25 12:11:38 +0800 |
commit | 52b4abdcb351830f5493a50c4181ef3947f3feab (patch) | |
tree | 3df286d1e10dbfe449206032cc9d627434799a41 /src/rsl.c | |
parent | 9eb6d88d644c9e7d85177c39f12952fd2f4d9138 (diff) |
replace rsl_rlm_cause_strs with rsl_rlm_cause_name()
Diffstat (limited to 'src/rsl.c')
-rw-r--r-- | src/rsl.c | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -211,7 +211,12 @@ static const struct value_string rsl_err_vals[] = { { 0, NULL } }; -const struct value_string rsl_rlm_cause_strs[] = { +const char *rsl_err_name(uint8_t err) +{ + return get_value_string(rsl_err_vals, err); +} + +static const struct value_string rsl_rlm_cause_strs[] = { { RLL_CAUSE_T200_EXPIRED, "Timer T200 expired (N200+1) times" }, { RLL_CAUSE_REEST_REQ, "Re-establishment request" }, { RLL_CAUSE_UNSOL_UA_RESP, "Unsolicited UA response" }, @@ -229,9 +234,9 @@ const struct value_string rsl_rlm_cause_strs[] = { { 0, NULL }, }; -const char *rsl_err_name(uint8_t err) +const char *rsl_rlm_cause_name(uint8_t err) { - return get_value_string(rsl_err_vals, err); + return get_value_string(rsl_rlm_cause_strs, err); } /* Section 3.3.2.3 TS 05.02. I think this looks like a table */ |