diff options
author | Max <msuraev@sysmocom.de> | 2017-01-11 18:12:32 +0100 |
---|---|---|
committer | Max <msuraev@sysmocom.de> | 2017-01-11 18:12:32 +0100 |
commit | 1251afe2542417426ffe9a4aace2603f06eb15bd (patch) | |
tree | 9e3f56a1bf799a76fd3d832a0c2060ba26e1d300 /include | |
parent | b632e03f6588636d3ea4f642154754f0aca33988 (diff) |
Add abis_nm_fail_evt_vrep() function
It accept fixed number of arguments including va_list instead of variable
number of arguments in abis_nm_fail_evt_rep() - similar to vprintff() vs
printf().
Related: OS#1615
Change-Id: Ib293dec1c2de9b664584a8456c782ea7b6dd8555
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/gsm/protocol/gsm_12_21.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/osmocom/gsm/protocol/gsm_12_21.h b/include/osmocom/gsm/protocol/gsm_12_21.h index 1a953119..5daab42b 100644 --- a/include/osmocom/gsm/protocol/gsm_12_21.h +++ b/include/osmocom/gsm/protocol/gsm_12_21.h @@ -790,4 +790,9 @@ struct msgb *abis_nm_fail_evt_rep(enum abis_nm_event_type t, enum abis_nm_severity s, enum abis_nm_pcause_type ct, uint16_t cause_value, const char *fmt, ...); +struct msgb *abis_nm_fail_evt_vrep(enum abis_nm_event_type t, + enum abis_nm_severity s, + enum abis_nm_pcause_type ct, + uint16_t cause_value, const char *fmt, + va_list ap); /*! @} */ |