Module: sip-router Branch: master Commit: ea5dbe89b4010faf1d4a4c7c4ce97ebbcb46e71d URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=ea5dbe89...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: Wed Feb 22 17:40:33 2012 +0100
core: helper fixup function for all parameters int/pvar
---
mod_fix.c | 8 ++++++++ mod_fix.h | 1 + 2 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/mod_fix.c b/mod_fix.c index f0207e7..3f07f59 100644 --- a/mod_fix.c +++ b/mod_fix.c @@ -549,3 +549,11 @@ int fixup_spve_all(void** param, int param_no) { return fixup_spve_null(param, 1); } + +/** + * + */ +int fixup_igp_all(void** param, int param_no) +{ + return fixup_igp_null(param, 1); +} diff --git a/mod_fix.h b/mod_fix.h index 1f264d1..0e4206f 100644 --- a/mod_fix.h +++ b/mod_fix.h @@ -129,6 +129,7 @@ int fixup_spve_str(void** param, int param_no); int fixup_free_spve_str(void** param, int param_no);
int fixup_spve_all(void** param, int param_no); +int fixup_igp_all(void** param, int param_no);
/** get the corresp. free fixup function.*/ free_fixup_function mod_fix_get_fixup_free(fixup_function f);