Module: kamailio Branch: master Commit: 09db09e44015d5294c21f1d433d9bae8835900ce URL: https://github.com/kamailio/kamailio/commit/09db09e44015d5294c21f1d433d9bae8...
Author: Muhammad Shafi muhammad.shafi@1und1.de Committer: Henning Westerholt hw@gilawa.com Date: 2025-06-10T15:05:56+02:00
pdb: removed unused multiparam_t struct
---
Modified: src/modules/pdb/pdb.c
---
Diff: https://github.com/kamailio/kamailio/commit/09db09e44015d5294c21f1d433d9bae8... Patch: https://github.com/kamailio/kamailio/commit/09db09e44015d5294c21f1d433d9bae8...
---
diff --git a/src/modules/pdb/pdb.c b/src/modules/pdb/pdb.c index 47c76b0e75c..1add3e1a075 100644 --- a/src/modules/pdb/pdb.c +++ b/src/modules/pdb/pdb.c @@ -57,33 +57,6 @@ static uint16_t *global_id = NULL;
ksr_loglevels_t _ksr_loglevels_pdb = KSR_LOGLEVELS_DEFAULTS;
-/*! - * Generic parameter that holds a string, an int or a pseudo-variable - * @todo replace this with gparam_t - */ -struct multiparam_t -{ - enum - { - MP_INT, - MP_STR, - MP_AVP, - MP_PVE, - } type; - union - { - int n; - str s; - struct - { - avp_flags_t flags; - avp_name_t name; - } a; - pv_elem_t *p; - } u; -}; - - /* ---- exported commands: */ int pdb_query(sip_msg_t *_msg, str *_number, str *_dstvar);