[sr-dev] git:master:6528c9cb: core: kemi - more combinations for function prototypes

Daniel-Constantin Mierla miconda at gmail.com
Fri May 25 11:43:05 CEST 2018


Module: kamailio
Branch: master
Commit: 6528c9cbc5a89128d4892f1a526c76747b42448c
URL: https://github.com/kamailio/kamailio/commit/6528c9cbc5a89128d4892f1a526c76747b42448c

Author: Daniel-Constantin Mierla <miconda at gmail.com>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2018-05-25T11:42:45+02:00

core: kemi - more combinations for function prototypes

---

Modified: src/core/kemi.h

---

Diff:  https://github.com/kamailio/kamailio/commit/6528c9cbc5a89128d4892f1a526c76747b42448c.diff
Patch: https://github.com/kamailio/kamailio/commit/6528c9cbc5a89128d4892f1a526c76747b42448c.patch

---

diff --git a/src/core/kemi.h b/src/core/kemi.h
index d19e094c63..0822c752f4 100644
--- a/src/core/kemi.h
+++ b/src/core/kemi.h
@@ -89,8 +89,22 @@ typedef int (*sr_kemi_fmssn_f)(sip_msg_t*, str*, str*, int);
 typedef int (*sr_kemi_fmsss_f)(sip_msg_t*, str*, str*, str*);
 
 /* sip_msg_t and four int|str params */
-typedef int (*sr_kemi_fmssss_f)(sip_msg_t*, str*, str*, str*, str*);
+typedef int (*sr_kemi_fmnnnn_f)(sip_msg_t*, int, int, int, int);
+typedef int (*sr_kemi_fmnnns_f)(sip_msg_t*, int, int, int, str*);
+typedef int (*sr_kemi_fmnnsn_f)(sip_msg_t*, int, int, str*, int);
+typedef int (*sr_kemi_fmnnss_f)(sip_msg_t*, int, int, str*, str*);
+typedef int (*sr_kemi_fmnsnn_f)(sip_msg_t*, int, str*, int, int);
+typedef int (*sr_kemi_fmnsns_f)(sip_msg_t*, int, str*, int, str*);
+typedef int (*sr_kemi_fmnssn_f)(sip_msg_t*, int, str*, str*, int);
+typedef int (*sr_kemi_fmnsss_f)(sip_msg_t*, int, str*, str*, str*);
+typedef int (*sr_kemi_fmsnnn_f)(sip_msg_t*, str*, int, int, int);
+typedef int (*sr_kemi_fmsnns_f)(sip_msg_t*, str*, int, int, str*);
+typedef int (*sr_kemi_fmsnsn_f)(sip_msg_t*, str*, int, str*, int);
+typedef int (*sr_kemi_fmsnss_f)(sip_msg_t*, str*, int, str*, str*);
 typedef int (*sr_kemi_fmssnn_f)(sip_msg_t*, str*, str*, int, int);
+typedef int (*sr_kemi_fmssns_f)(sip_msg_t*, str*, str*, int, str*);
+typedef int (*sr_kemi_fmsssn_f)(sip_msg_t*, str*, str*, str*, int);
+typedef int (*sr_kemi_fmssss_f)(sip_msg_t*, str*, str*, str*, str*);
 
 /* sip_msg_t and five int|str params */
 typedef int (*sr_kemi_fmsssss_f)(sip_msg_t*, str*, str*, str*, str*, str*);




More information about the sr-dev mailing list