Hello,
As you will see I have merged my branch back into master.
These changes add a new event route [tm:branch-failure] to the tm module
which is run when any failure response is received on a transaction.
The event_route uses a new route type BRANCH_ROUTE which limits the
functions that can be run in the route.
The functions t_check_status(), t_next_contact_flow(), t_relay() and
unregister() can be used in this route.
A new pv $T_reply_ruid is accessible in this route which can be used to
unregister a single contact entry.
The following example route can be used on a registrar to handle failed
or invalid flows:
event_route[tm:branch-failure] {
xlog("L_INFO", "event_route[tm:branch-failure]\n");
if (t_check_status("430|403")) {
if (!unregister("location", "$tu", "$T_reply_ruid"))
{
xlog("L_WARN", "failed to unregister $tu with
ruid $T_reply_ruid\n");
}
if (!t_next_contact_flow())
{
xlog("L_INFO", "No more flows\n");
}
else
{
xlog("L_INFO", "Next flow\n");
t_relay();
}
}
}
Any bugs, memory leaks etc. let me know!
Hugh
--
Hugh Waite
Principal Design Engineer
Crocodile RCS Ltd.
If a PUBLISH request is sent before a 200 OK for the previous PUBLISH request is received, the E-Tag is reset which leads to inconsistent presentity data in the presence server.
This is happening because the second PUBLISH is sent with the same E-Tag as the previous one, but the presence server has an updated the E-Tag (generated while handling the first PUBLISH).
The pua module should implement a queuing mechanism for subsequent PUBLISH request while a previous PUBLISH transaction is in progress. No new PUBLISH requests should be sent before a response to the previous PUBLISH request was received and the E-Tag updated.
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/21
Requests send with uac module's functions like uac_req_send() and remote registrations use the TM module, but don't actually do (DNS) failover when a destination is unreachable or sends a 503.
In the tm's uac.c, t_uac_prepare() function, i can already see that the dns handle is stored in a throwaway variable instead of in the transaction, but fixing the issue isn't as simple as just storing it in the transaction (print_uac_request_from_buf() needs a uas in the transaction).
Due to github not supporting attachments to issues, the sample config and debug log are inline.... :(
DNS entry:
```
$ host -t SRV _sip._udp.failover.test.speakup.nl
_sip._udp.failover.test.speakup.nl has SRV record 10 0 1111 try1.test.speakup.nl.
_sip._udp.failover.test.speakup.nl has SRV record 100 0 2222 try2.test.speakup.nl.
```
Log snippet:
```syslog
Jun 15 10:00:03 rio UACFailover[18178]: INFO: <script>: Sending OPTIONS request to sip:failover.test.speakup.nl
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: tm [uac.c:249]: t_uac_prepare(): DEBUG:tm:t_uac: next_hop=<sip:failover.test.speakup.nl>
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:537]: _dns_hash_find(): (_sip._udp.failover.test.speakup.nl(34), 33), h=825
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [resolve.c:937]: get_record(): skipping 8 NS (p=0x9ea284, end=0x9ea3e9)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [resolve.c:952]: get_record(): parsing 9 ARs (p=0x9ea335, end=0x9ea3e9)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:1741]: dns_get_related(): (0x7f225233eb38 (_sip._udp.failover.test.speakup.nl, 33), 33, *0x7f2257baf2b8) (0)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:840]: dns_cache_add_unsafe(): adding _sip._udp.failover.test.speakup.nl(34) 33 (flags=0) at 825
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:840]: dns_cache_add_unsafe(): adding try1.test.speakup.nl(20) 1 (flags=0) at 310
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:840]: dns_cache_add_unsafe(): adding try2.test.speakup.nl(20) 1 (flags=0) at 307
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:2336]: dns_srv_get_nxt_rr(): (0x7f225233eb38, 0, 0, 1597643831): selected 0/1 in grp. 0 (rand_w=0, rr=0x7f225233eba0 rd=0x7f225233ebb8 p=10 w=0 rsum=0)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:537]: _dns_hash_find(): (try1.test.speakup.nl(20), 1), h=310
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:2926]: dns_a_resolve(): (try1.test.speakup.nl, 0) returning 0
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:3169]: dns_srv_resolve_ip(): ("_sip._udp.failover.test.speakup.nl", 0, 0), ret=0, ip=192.168.1.245
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [dns_cache.c:3260]: dns_srv_sip_resolve(): (failover.test.speakup.nl, 0, 0), srv0, ret=0
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: tm [uac.c:150]: dlg2hash(): DEBUG: dlg2hash: 54501
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: tm [uac.c:351]: t_uac_prepare(): executing event_route[tm:local-request]
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/msg_parser.c:606]: parse_msg(): SIP Request:
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/msg_parser.c:608]: parse_msg(): method: <OPTIONS>
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/msg_parser.c:610]: parse_msg(): uri: <sip:failover.test.speakup.nl>
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/msg_parser.c:612]: parse_msg(): version: <SIP/2.0>
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/parse_via.c:1254]: parse_via_param(): Found param type 232, <branch> = <z9hG4bK5e4d.47adbbf5000000000000000000000000.0>; state=16
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/parse_via.c:2642]: parse_via(): end of header reached, state=5
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/msg_parser.c:496]: parse_headers(): parse_headers: Via found, flags=2
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/msg_parser.c:498]: parse_headers(): parse_headers: this is the first via
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/parse_addr_spec.c:894]: parse_addr_spec(): end of header reached, state=10
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/msg_parser.c:173]: get_hdr_field(): DEBUG: get_hdr_field: <To> [22]; uri=[sip:to.example.com]
Jun 15 10:00:03 rio UACFailover[18178]: [97B blob data]
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [parser/msg_parser.c:153]: get_hdr_field(): get_hdr_field: cseq <CSeq>: <10> <OPTIONS>
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: pv [pv_core.c:376]: pv_get_xto_attr(): no Tag parameter
Jun 15 10:00:03 rio UACFailover[18178]: INFO: <script>: [udp:172.28.4.128:6789] [10 OPTIONS] Request (cid: 6cd531e47cc63e20-18178(a)172.28.4.128 Branch: -1 ToTag: <null> len:382) To <sip:failover.test.speakup.nl> via <sip:failover.test.speakup.nl>
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [usr_avp.c:631]: destroy_avp_list(): destroying list (nil)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [usr_avp.c:631]: destroy_avp_list(): destroying list (nil)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [usr_avp.c:631]: destroy_avp_list(): destroying list (nil)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [usr_avp.c:631]: destroy_avp_list(): destroying list (nil)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [usr_avp.c:631]: destroy_avp_list(): destroying list (nil)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [usr_avp.c:631]: destroy_avp_list(): destroying list (nil)
Jun 15 10:00:03 rio UACFailover[18178]: DEBUG: <core> [xavp.c:446]: xavp_destroy_list(): destroying xavp list (nil)
Jun 15 10:00:05 rio UACFailover[18176]: DEBUG: tm [t_reply.c:1230]: t_should_relay_response(): ->>>>>>>>> T_code=0, new_code=408
Jun 15 10:00:05 rio UACFailover[18176]: WARNING: tm [t_reply.c:957]: run_failure_handlers(): Warning: run_failure_handlers: no UAC support (1, 0)
Jun 15 10:00:05 rio UACFailover[18176]: DEBUG: tm [t_reply.c:2016]: local_reply(): DEBUG: local_reply: branch=0, save=0, winner=0
Jun 15 10:00:05 rio UACFailover[18176]: DEBUG: tm [t_reply.c:2053]: local_reply(): DEBUG: local transaction completed
```
Sample config:
```python
#------------------
# Flags
#------------------
debug=3
memdbg=5
mem_summary=5
#fork=no # This option should not be present to enable forking but disable daemonize, also -D commandline parameter is needed
log_stderror=no
sip_warning=no
listen=172.28.4.128
port=6789
children=2
shm_mem_size=64
log_name="UACFailover"
check_via=no # (cmd. line: -v)
dns=no # (cmd. line: -r)
rev_dns=no # (cmd. line: -R)
dns_use_search_list=no
use_dns_failover=yes
dns_srv_lb=yes
disable_tcp=yes
mpath="/usr/lib/x86_64-linux-gnu/kamailio/modules/"
loadmodule "pv.so"
loadmodule "tm.so"
loadmodule "tmx.so"
loadmodule "sl.so"
loadmodule "xlog.so"
loadmodule "rr.so"
loadmodule "uac.so"
loadmodule "rtimer.so"
# -----------------------------------------------------------------
# Module settings
# -----------------------------------------------------------------
modparam("pv", "varset", "server=s:LOGNAME")
modparam("tm", "auto_inv_100", 0)
# Time until provisional response (eg "100 Trying") is received
modparam("tm", "fr_timer", 2000)
# Time to await final response on INVITE per branch (eg per branch ring time)
modparam("tm", "fr_inv_timer", 10000)
# Time to await final response on INVITE (eg ring time)
modparam("tm", "max_inv_lifetime", 20000)
modparam("tm", "restart_fr_on_each_reply", 0)
modparam("tm", "failure_reply_mode", 3)
modparam("rtimer", "timer", "name=uac;interval=10;mode=1;")
modparam("rtimer", "exec", "timer=uac;route=TIMER")
route {
xlog("L_NOTICE", "[$pr:$si:$sp] [$cs $rm] Request. (cid: $ci <$fu> => <$ru> len: $ml)");
drop();
}
event_route[tm:local-request] {
xlog("L_INFO", " [$pr:$si:$sp] [$cs $rm] Request (cid: $ci Branch: $T_branch_idx ToTag: $tt len:$ml) To <$ru> via <$du>");
}
onreply_route {
xlog("L_INFO", " [$pr:$si:$sp] [$cs $rm] Reply (cid: $ci Branch: $T_branch_idx Status: $rs $rr ToTag: $tt len:$ml)");
}
route[TIMER] {
if not $var(done) == 1 {
$var(done) = 1;
$uac_req(method) = "OPTIONS";
$uac_req(ruri) = "sip:failover.test.speakup.nl";
$uac_req(furi) = "sip:from.example.com";
$uac_req(turi) = "sip:to.example.com";
xlog("L_INFO", "Sending $uac_req(method) request to $uac_req(ruri)");
uac_req_send();
}
}
```
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/210
This patch helps us to handle inadequatness of Linphone mobile apps (both iOS and Android flavours are affected) without reinventing a lot of logics to handle each transport (we use TCP, TLS, WS, WSS).
E.g. if we have two TLS-based Linphone clients, even with enable_double_rr for gentle cross-forwarding we would get single RR header without transport= attribute, resulting in Linphone sending ACK and BYE via UDP.
This new option, being enabled, results in two RR headers being always inserted, with transport attribute being always added. I believe this cannot harm the installation with enable_double_rr, just makes instructions more explicit.
The Linphone's behaviour looks like a set of different bugs, but it would get us much more efforts to fix.
I don't know if any other useragent needs such workaround. So I would perfectly understand if this commit wouldn't be accepted upstream.
Also this commit currently lacks README doc rebuild, because I don't know how to do that. Only XML doc is updated.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/257
-- Commit Summary --
* rr: add enable_double_rr_always option
-- File Changes --
M modules/rr/doc/rr_admin.xml (24)
M modules/rr/record.c (14)
M modules/rr/rr_mod.c (2)
M modules/rr/rr_mod.h (1)
M tcp_read.c (5)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/257.patchhttps://github.com/kamailio/kamailio/pull/257.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/257
Here are some proposed modifications to handle the P-Charging-Vector header as defined in rfc3455 section 4.6 to
- parse charging vector from SIP message
- generate new unique charging vector
- remove a charging vector header
a new pseudo variable
pseudo variables are exported and enable Read onlly access to charging vector fields
$pcv = whole field
$pcv.value = icid-value field (see RFC3455 section 5.6)
$pcv.genaddr = icid-generated-at field (see RFC3455 section 5.6)
a new function acc_charging_vector()
- g = generate a new charging vector or forward the orginal one
- f = generate a new charging vector regardless of the orginal charging vector
- r = remote the P-Charging vector header from the packet
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/215
-- Commit Summary --
* P-Charging-Vector implementation
* Merge remote branch 'upstream/master'
* P-Charging-Vector
-- File Changes --
M modules/acc/acc_mod.c (18)
A modules/acc/chargingvector.c (435)
A modules/acc/chargingvector.h (18)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/215.patchhttps://github.com/kamailio/kamailio/pull/215.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/215
I've just notice a lot of them building the package
```
grep -A1 -B1 'never defined' ../debian/build-area/kamailio_4.3.1-2_amd64.build
```
```
In file included from msg_translator.c:103:0:
parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from select_core.c:41:
parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from parser/parse_subscription_state.c:33:0:
parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from parser/parse_rr.c:30:
parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from parser/hf.c:39:
parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from parser/parse_body.c:32:0:
parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from parser/parse_event.c:36:
parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from parser/contact/contact.c:36:
parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from parser/contact/parse_contact.c:37:
parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from async_sleep.c:33:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from async_mod.c:35:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from cmpapi.c:28:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from debugger_mod.c:34:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sdp_mangler.c:38:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from contact_ops.c:30:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from mediaproxy.c:47:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from mqueue_api.c:33:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from mqueue_mod.c:36:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from nat_traversal.c:65:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from nathelper.c:224:
../registrar/../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from nhelpr_funcs.c:34:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from path.c:38:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from pv_xavp.c:24:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from pv_trans.c:42:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pv_core.c:45:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from loose.c:36:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from record.c:38:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rr_mod.c:40:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from rtimer_mod.c:44:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rtpproxy_funcs.c:34:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rtpproxy_stream.c:36:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rtpproxy.c:221:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sanity.c:34:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from checks.c:41:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from contact_ops.c:40:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sipops.c:35:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sl.c:54:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from textops.c:51:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg.c:32:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_reply.c:69:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_msgbuilder.c:39:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_cancel.c:35:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from tm.c:125:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from h_table.c:46:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from uac.c:44:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_append_branches.c:42:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from tm_load.c:25:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_fifo.c:44:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_lookup.c:61:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rpc_uac.c:27:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_fwd.c:42:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_mi.c:37:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from tmx_mod.c:36:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from t_var.c:31:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from th_msg.c:35:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from xlog.c:50:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rtpengine_funcs.c:26:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rtpengine.c:78:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from sipt.c:26:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from auth_xkeys.c:35:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from tsilo.c:31:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ts_append.c:35:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ts_rpc.c:24:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ts_hash.c:37:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ts_handlers.c:24:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ts_store.c:35:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from bind_dmq.c:24:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from message.c:30:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dmq_funcs.c:23:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notification_peer.c:25:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dmq.c:43:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dmqnode.c:26:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from peer.c:24:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from worker.c:24:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_rpc.c:22:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_subscribe.c:20:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_dialog.c:20:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_event.c:22:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_call_info.c:22:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_util.c:20:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_reply.c:20:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_appearance.c:22:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_db.c:20:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca.c:22:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_notify.c:22:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sca_hash.c:22:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from seas_action.c:51:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from encode_parameters.c:42:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from encode_uri.c:49:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from encode_route.c:43:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from statistics.c:37:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from encode_via.c:49:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cluster.c:25:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from encode_contact.c:42:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ha.c:27:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from encode_header.c:46:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from encode_content_disposition.c:43:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from encode_to_body.c:50:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from seas.c:37:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from event_dispatcher.c:43:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from libsms_modem.c:29:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sms_funcs.c:36:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sms.c:36:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sms_report.c:25:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from libsms_getsms.c:26:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from libsms_putsms.c:23:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rd_funcs.c:28:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from uac_redirect.c:30:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dmq_usrloc.c:32:
../dmq/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from usrloc_sync.c:23:
../dmq/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rtjson_routing.c:34:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from acc_mod.c:68:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from acc_logic.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from acc_cdr.c:38:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from dbcl_data.c:31:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg_transfer.c:40:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg_req_within.c:40:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg_profile.c:37:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg_hash.c:42:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg_handlers.c:43:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dialog.c:67:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg_cseq.c:40:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dispatcher.c:56:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from dispatch.c:44:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from ht_api.c:29:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from htable.c:46:
../dmq/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from api.c:30:
../dmq/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ht_dmq.c:24:
../dmq/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ht_var.c:24:
../dmq/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from imc.c:48:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from imc_cmd.c:37:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from mohq_locks.c:22:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from mohq_db.c:22:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from mohq_funcs.c:24:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from mohq.c:26:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from msilo.c:41:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from mtree.c:33:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from permissions.c:39:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from path.c:31:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from save.c:36:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from lookup.c:38:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sip_msg.c:39:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sipcapture.c:65:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from siptrace.c:49:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from uac_send.c:25:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from uac.c:36:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from auth.c:33:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from uac_reg.c:35:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from replace.c:30:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from lcr_mod.c:86:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from utils_func.c:38:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from publish.c:36:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from bind_presence.c:37:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from subscribe.c:34:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from event_list.c:34:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from presentity.c:41:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from hash.c:36:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from presence.c:59:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notify.c:43:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notify_body.c:40:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from presence_conference.c:39:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from add_events.c:33:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notify_body.c:47:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from presence_dialoginfo.c:40:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from add_events.c:33:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from presence_mwi.c:50:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from add_events.c:39:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from presence_profile.c:50:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from add_events.c:38:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from presence_reginfo.c:37:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from add_events.c:28:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notify_body.c:39:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from xcap_auth.c:44:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from presence_xml.c:49:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pres_check.c:25:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from add_events.c:39:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from send_subscribe.c:33:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from hash.c:37:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pua.c:41:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from event_list.c:28:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pua_bind.c:24:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from send_publish.c:39:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from add_events.c:29:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from registrar_cb.c:34:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pua_bla.c:36:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notify.c:33:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pua_dialoginfo.c:42:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dialog_publish.c:39:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from mi_func.c:35:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pua_mi.c:42:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pua_reginfo.c:25:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from subscribe.c:27:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from usrloc_cb.c:25:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notify.c:32:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ul_publish.c:45:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pua_usrloc.c:55:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from request_winfo.c:37:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from xmpp2simple.c:45:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from simple2xmpp.c:46:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pua_xmpp.c:47:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notify.c:35:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from subscribe.c:35:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rls.c:44:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from resource_notify.c:33:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rls_db.c:36:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from xcap_client.c:43:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from xcap_misc.c:34:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from pv_xml.c:32:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from perlfunc.c:32:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from xcap_auth.c:43:
../../modules/presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from app_lua_exp.c:35:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from xmpp.c:118:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from util.c:35:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cpl_run.c:44:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cpl_loader.c:49:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cpl_sig.c:26:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cpl_nonsig.c:40:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cpl.c:62:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from redis_client.c:36:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ndb_redis_mod.c:38:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from python_exec.c:26:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from jsonrpc_request.c:26:
../tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from jsonrpc_io.c:36:
../tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from jsonrpc_mod.c:31:
../tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cdp_rpc.c:8:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from cdp_rpc.c:7:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from tcp_accept.c:64:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from tcp_accept.c:64:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from session.c:55:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
In file included from session.c:54:0:
acctstatemachine.h:17:12: warning: inline function 'cc_acc_client_stateful_sm_process' declared but never defined
inline int cc_acc_client_stateful_sm_process(cdp_session_t* cc_acc, int event, AAAMessage* msg);
--
In file included from session.c:53:0:
authstatemachine.h:56:13: warning: inline function 'auth_server_statefull_sm_process' declared but never defined
inline void auth_server_statefull_sm_process(cdp_session_t* auth, int event, AAAMessage* msg);
^
authstatemachine.h:55:12: warning: inline function 'auth_client_statefull_sm_process' declared but never defined
inline int auth_client_statefull_sm_process(cdp_session_t* auth, int event, AAAMessage* msg);
--
from session.c:53:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from session.c:52:0:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from routing.c:49:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from routing.c:46:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from routing.c:46:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
In file included from api_process.c:47:0:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from api_process.c:46:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from api_process.c:46:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from common.c:8:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from peerstatemachine.c:60:0:
acctstatemachine.h:17:12: warning: inline function 'cc_acc_client_stateful_sm_process' declared but never defined
inline int cc_acc_client_stateful_sm_process(cdp_session_t* cc_acc, int event, AAAMessage* msg);
--
In file included from peerstatemachine.c:59:0:
authstatemachine.h:56:13: warning: inline function 'auth_server_statefull_sm_process' declared but never defined
inline void auth_server_statefull_sm_process(cdp_session_t* auth, int event, AAAMessage* msg);
^
authstatemachine.h:55:12: warning: inline function 'auth_client_statefull_sm_process' declared but never defined
inline int auth_client_statefull_sm_process(cdp_session_t* auth, int event, AAAMessage* msg);
--
from peerstatemachine.c:51:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from peerstatemachine.c:50:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from peerstatemachine.c:50:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from acceptor.c:59:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from acceptor.c:59:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
In file included from authstatemachine.c:52:0:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from authstatemachine.c:48:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from authstatemachine.c:48:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from mod.c:51:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from mod.c:51:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from mod.c:51:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from diameter_peer.c:52:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from diameter_peer.c:52:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from diameter_peer.c:52:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from peermanager.c:52:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from peermanager.c:52:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
receiver.c: At top level:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from receiver.c:66:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from receiver.c:65:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from diameter_comm.c:47:0:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from diameter_comm.c:47:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from diameter_comm.c:46:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from cdp_load.c:46:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from timer.c:52:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from timer.c:52:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from transaction.c:48:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
from transaction.c:48:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from diameter_msg.c:58:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
In file included from diameter_msg.c:57:0:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from diameter_msg.c:47:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from acctstatemachine.c:8:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from acctstatemachine.c:8:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from peer.c:48:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from worker.c:58:
transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from worker.c:57:
peer.h:134:13: warning: inline function 'touch_peer' declared but never defined
inline void touch_peer(peer *p);
--
In file included from worker.c:55:0:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
In file included from configparser.c:46:0:
config.h:144:13: warning: inline function 'log_dp_config' declared but never defined
inline void log_dp_config(dp_config *x);
--
from base.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from avp_get_base_data_format.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from imsapp.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from nasapp.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from epcapp.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from avp_new.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from avp_add.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from mod.c:46:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from avp_get.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from avp_new_base_data_format.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from ccapp.c:41:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from dlg_req_within.c:44:0:
dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from dlg_req_within.c:38:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from dlg_cb.c:35:0:
dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from dlg_cb.c:35:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from dlg_profile.c:43:0:
dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from dlg_profile.c:41:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg_hash.c:15:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from dlg_handlers.c:25:0:
dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from dlg_handlers.c:20:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from dialog.c:26:0:
dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from dialog.c:22:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from dlg_db_handler.c:43:0:
dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from dlg_db_handler.c:43:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlg_var.c:26:
dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from dlg_var.c:26:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from authims_mod.c:59:0:
authorize.h:187:13: warning: inline function 'start_reg_await_timer' declared but never defined
inline void start_reg_await_timer(auth_vector *av);
^
authorize.h:171:21: warning: inline function 'get_hash_auth' declared but never defined
inline unsigned int get_hash_auth(str private_identity,str public_identity);
^
authorize.h:158:13: warning: inline function 'auth_data_unlock' declared but never defined
inline void auth_data_unlock(unsigned int hash);
^
authorize.h:157:13: warning: inline function 'auth_data_lock' declared but never defined
inline void auth_data_lock(unsigned int hash);
--
from authims_mod.c:58:
../tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from authims_mod.c:57:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from cxdx_avp.c:49:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_avp.c:48:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from authorize.c:67:
../../lib/ims/../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from authorize.c:64:0:
cxdx_avp.h:274:12: warning: inline function 'cxdx_add_result_code' declared but never defined
inline int cxdx_add_result_code(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:266:12: warning: inline function 'cxdx_get_user_name' declared but never defined
inline str cxdx_get_user_name(AAAMessage *msg);
^
cxdx_avp.h:259:17: warning: inline function 'cxdx_get_next_public_identity' declared but never defined
inline AAA_AVP* cxdx_get_next_public_identity(AAAMessage *msg,AAA_AVP* pos,int avp_code,int vendor_id,const char *func);
^
cxdx_avp.h:248:12: warning: inline function 'cxdx_add_userdata_available' declared but never defined
inline int cxdx_add_userdata_available(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:240:12: warning: inline function 'cxdx_add_server_assignment_type' declared but never defined
inline int cxdx_add_server_assignment_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:232:12: warning: inline function 'cxdx_get_charging_info' declared but never defined
inline int cxdx_get_charging_info(AAAMessage *msg,str *ccf1,str *ccf2,str *ecf1,str *ecf2);
^
cxdx_avp.h:225:12: warning: inline function 'cxdx_get_user_data' declared but never defined
inline str cxdx_get_user_data(AAAMessage *msg);
^
cxdx_avp.h:184:12: warning: inline function 'cxdx_get_sip_number_auth_items' declared but never defined
inline int cxdx_get_sip_number_auth_items(AAAMessage *msg, int *data);
^
cxdx_avp.h:177:12: warning: inline function 'cxdx_add_server_name' declared but never defined
inline int cxdx_add_server_name(AAAMessage *msg,str data);
--
In file included from authorize.c:64:0:
cxdx_avp.h:169:12: warning: inline function 'cxdx_add_sip_auth_data_item_request' declared but never defined
inline int cxdx_add_sip_auth_data_item_request(AAAMessage *msg, str auth_scheme, str auth, str username, str realm,str method, str server_name);
^
cxdx_avp.h:160:12: warning: inline function 'cxdx_add_sip_number_auth_items' declared but never defined
inline int cxdx_add_sip_number_auth_items(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:152:12: warning: inline function 'cxdx_get_capabilities' declared but never defined
inline int cxdx_get_capabilities(AAAMessage *msg,int **m,int *m_cnt,int **o,int *o_cnt, str **p,int *p_cnt);
^
cxdx_avp.h:141:12: warning: inline function 'cxdx_get_server_name' declared but never defined
inline str cxdx_get_server_name(AAAMessage *msg);
^
cxdx_avp.h:134:12: warning: inline function 'cxdx_get_experimental_result_code' declared but never defined
inline int cxdx_get_experimental_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:127:12: warning: inline function 'cxdx_get_result_code' declared but never defined
inline int cxdx_get_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:120:12: warning: inline function 'cxdx_add_authorization_type' declared but never defined
inline int cxdx_add_authorization_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:112:12: warning: inline function 'cxdx_add_UAR_flags' declared but never defined
inline int cxdx_add_UAR_flags(AAAMessage *msg, unsigned int sos_reg);
^
cxdx_avp.h:104:12: warning: inline function 'cxdx_add_visited_network_id' declared but never defined
inline int cxdx_add_visited_network_id(AAAMessage *msg,str data);
^
cxdx_avp.h:96:12: warning: inline function 'cxdx_add_public_identity' declared but never defined
inline int cxdx_add_public_identity(AAAMessage *msg,str data);
^
cxdx_avp.h:88:12: warning: inline function 'cxdx_add_user_name' declared but never defined
inline int cxdx_add_user_name(AAAMessage *msg,str data);
^
cxdx_avp.h:80:12: warning: inline function 'cxdx_add_auth_session_state' declared but never defined
inline int cxdx_add_auth_session_state(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:72:12: warning: inline function 'cxdx_add_vendor_specific_appid' declared but never defined
inline int cxdx_add_vendor_specific_appid(AAAMessage *msg,unsigned int vendor_id,unsigned int auth_id,unsigned int acct_id);
^
cxdx_avp.h:62:12: warning: inline function 'cxdx_add_destination_realm' declared but never defined
inline int cxdx_add_destination_realm(AAAMessage *msg, str data);
--
cxdx_mar.c: At top level:
authorize.h:187:13: warning: inline function 'start_reg_await_timer' declared but never defined
inline void start_reg_await_timer(auth_vector *av);
^
authorize.h:171:21: warning: inline function 'get_hash_auth' declared but never defined
inline unsigned int get_hash_auth(str private_identity,str public_identity);
^
authorize.h:158:13: warning: inline function 'auth_data_unlock' declared but never defined
inline void auth_data_unlock(unsigned int hash);
^
authorize.h:157:13: warning: inline function 'auth_data_lock' declared but never defined
inline void auth_data_lock(unsigned int hash);
--
In file included from cxdx_mar.c:51:0:
cxdx_avp.h:274:12: warning: inline function 'cxdx_add_result_code' declared but never defined
inline int cxdx_add_result_code(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:266:12: warning: inline function 'cxdx_get_user_name' declared but never defined
inline str cxdx_get_user_name(AAAMessage *msg);
^
cxdx_avp.h:259:17: warning: inline function 'cxdx_get_next_public_identity' declared but never defined
inline AAA_AVP* cxdx_get_next_public_identity(AAAMessage *msg,AAA_AVP* pos,int avp_code,int vendor_id,const char *func);
^
cxdx_avp.h:248:12: warning: inline function 'cxdx_add_userdata_available' declared but never defined
inline int cxdx_add_userdata_available(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:240:12: warning: inline function 'cxdx_add_server_assignment_type' declared but never defined
inline int cxdx_add_server_assignment_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:232:12: warning: inline function 'cxdx_get_charging_info' declared but never defined
inline int cxdx_get_charging_info(AAAMessage *msg,str *ccf1,str *ccf2,str *ecf1,str *ecf2);
^
cxdx_avp.h:225:12: warning: inline function 'cxdx_get_user_data' declared but never defined
inline str cxdx_get_user_data(AAAMessage *msg);
^
cxdx_avp.h:184:12: warning: inline function 'cxdx_get_sip_number_auth_items' declared but never defined
inline int cxdx_get_sip_number_auth_items(AAAMessage *msg, int *data);
^
cxdx_avp.h:177:12: warning: inline function 'cxdx_add_server_name' declared but never defined
inline int cxdx_add_server_name(AAAMessage *msg,str data);
--
In file included from cxdx_mar.c:51:0:
cxdx_avp.h:169:12: warning: inline function 'cxdx_add_sip_auth_data_item_request' declared but never defined
inline int cxdx_add_sip_auth_data_item_request(AAAMessage *msg, str auth_scheme, str auth, str username, str realm,str method, str server_name);
^
cxdx_avp.h:160:12: warning: inline function 'cxdx_add_sip_number_auth_items' declared but never defined
inline int cxdx_add_sip_number_auth_items(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:152:12: warning: inline function 'cxdx_get_capabilities' declared but never defined
inline int cxdx_get_capabilities(AAAMessage *msg,int **m,int *m_cnt,int **o,int *o_cnt, str **p,int *p_cnt);
^
cxdx_avp.h:141:12: warning: inline function 'cxdx_get_server_name' declared but never defined
inline str cxdx_get_server_name(AAAMessage *msg);
^
cxdx_avp.h:134:12: warning: inline function 'cxdx_get_experimental_result_code' declared but never defined
inline int cxdx_get_experimental_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:127:12: warning: inline function 'cxdx_get_result_code' declared but never defined
inline int cxdx_get_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:120:12: warning: inline function 'cxdx_add_authorization_type' declared but never defined
inline int cxdx_add_authorization_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:112:12: warning: inline function 'cxdx_add_UAR_flags' declared but never defined
inline int cxdx_add_UAR_flags(AAAMessage *msg, unsigned int sos_reg);
^
cxdx_avp.h:104:12: warning: inline function 'cxdx_add_visited_network_id' declared but never defined
inline int cxdx_add_visited_network_id(AAAMessage *msg,str data);
^
cxdx_avp.h:96:12: warning: inline function 'cxdx_add_public_identity' declared but never defined
inline int cxdx_add_public_identity(AAAMessage *msg,str data);
^
cxdx_avp.h:88:12: warning: inline function 'cxdx_add_user_name' declared but never defined
inline int cxdx_add_user_name(AAAMessage *msg,str data);
^
cxdx_avp.h:80:12: warning: inline function 'cxdx_add_auth_session_state' declared but never defined
inline int cxdx_add_auth_session_state(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:72:12: warning: inline function 'cxdx_add_vendor_specific_appid' declared but never defined
inline int cxdx_add_vendor_specific_appid(AAAMessage *msg,unsigned int vendor_id,unsigned int auth_id,unsigned int acct_id);
^
cxdx_avp.h:62:12: warning: inline function 'cxdx_add_destination_realm' declared but never defined
inline int cxdx_add_destination_realm(AAAMessage *msg, str data);
--
from cxdx_mar.c:48:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_mar.c:47:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from ims_getters.c:50:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from checker.c:46:
../../lib/ims/../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from mod.c:49:0:
mark.h:78:12: warning: inline function 'isc_mark_write_route' declared but never defined
inline int isc_mark_write_route(struct sip_msg *msg,str *as,str *iscmark);
^
mark.h:76:12: warning: inline function 'isc_mark_drop_route' declared but never defined
inline int isc_mark_drop_route(struct sip_msg *msg);
--
from mod.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from third_party_reg.c:46:
mark.h:78:12: warning: inline function 'isc_mark_write_route' declared but never defined
inline int isc_mark_write_route(struct sip_msg *msg,str *as,str *iscmark);
^
mark.h:76:12: warning: inline function 'isc_mark_drop_route' declared but never defined
inline int isc_mark_drop_route(struct sip_msg *msg);
--
from third_party_reg.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from isc.c:47:
mark.h:78:12: warning: inline function 'isc_mark_write_route' declared but never defined
inline int isc_mark_write_route(struct sip_msg *msg,str *as,str *iscmark);
^
mark.h:76:12: warning: inline function 'isc_mark_drop_route' declared but never defined
inline int isc_mark_drop_route(struct sip_msg *msg);
--
from isc.c:47:
../../lib/ims/../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from mark.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_lir.c:51:
scscf_list.h:150:13: warning: inline function 'i_unlock' declared but never defined
inline void i_unlock(unsigned int hash);
^
scscf_list.h:149:13: warning: inline function 'i_lock' declared but never defined
inline void i_lock(unsigned int hash);
^
scscf_list.h:148:21: warning: inline function 'get_call_id_hash' declared but never defined
inline unsigned int get_call_id_hash(str callid,int hash_size);
--
from cxdx_lir.c:51:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from cxdx_lir.c:49:0:
cxdx_avp.h:274:12: warning: inline function 'cxdx_add_result_code' declared but never defined
inline int cxdx_add_result_code(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:266:12: warning: inline function 'cxdx_get_user_name' declared but never defined
inline str cxdx_get_user_name(AAAMessage *msg);
^
cxdx_avp.h:259:17: warning: inline function 'cxdx_get_next_public_identity' declared but never defined
inline AAA_AVP* cxdx_get_next_public_identity(AAAMessage *msg,AAA_AVP* pos,int avp_code,int vendor_id,const char *func);
^
cxdx_avp.h:248:12: warning: inline function 'cxdx_add_userdata_available' declared but never defined
inline int cxdx_add_userdata_available(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:240:12: warning: inline function 'cxdx_add_server_assignment_type' declared but never defined
inline int cxdx_add_server_assignment_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:232:12: warning: inline function 'cxdx_get_charging_info' declared but never defined
inline int cxdx_get_charging_info(AAAMessage *msg,str *ccf1,str *ccf2,str *ecf1,str *ecf2);
^
cxdx_avp.h:225:12: warning: inline function 'cxdx_get_user_data' declared but never defined
inline str cxdx_get_user_data(AAAMessage *msg);
^
cxdx_avp.h:184:12: warning: inline function 'cxdx_get_sip_number_auth_items' declared but never defined
inline int cxdx_get_sip_number_auth_items(AAAMessage *msg, int *data);
^
cxdx_avp.h:177:12: warning: inline function 'cxdx_add_server_name' declared but never defined
inline int cxdx_add_server_name(AAAMessage *msg,str data);
--
In file included from cxdx_lir.c:49:0:
cxdx_avp.h:169:12: warning: inline function 'cxdx_add_sip_auth_data_item_request' declared but never defined
inline int cxdx_add_sip_auth_data_item_request(AAAMessage *msg, str auth_scheme, str auth, str username, str realm,str method, str server_name);
^
cxdx_avp.h:160:12: warning: inline function 'cxdx_add_sip_number_auth_items' declared but never defined
inline int cxdx_add_sip_number_auth_items(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:152:12: warning: inline function 'cxdx_get_capabilities' declared but never defined
inline int cxdx_get_capabilities(AAAMessage *msg,int **m,int *m_cnt,int **o,int *o_cnt, str **p,int *p_cnt);
^
cxdx_avp.h:141:12: warning: inline function 'cxdx_get_server_name' declared but never defined
inline str cxdx_get_server_name(AAAMessage *msg);
^
cxdx_avp.h:134:12: warning: inline function 'cxdx_get_experimental_result_code' declared but never defined
inline int cxdx_get_experimental_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:127:12: warning: inline function 'cxdx_get_result_code' declared but never defined
inline int cxdx_get_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:120:12: warning: inline function 'cxdx_add_authorization_type' declared but never defined
inline int cxdx_add_authorization_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:112:12: warning: inline function 'cxdx_add_UAR_flags' declared but never defined
inline int cxdx_add_UAR_flags(AAAMessage *msg, unsigned int sos_reg);
^
cxdx_avp.h:104:12: warning: inline function 'cxdx_add_visited_network_id' declared but never defined
inline int cxdx_add_visited_network_id(AAAMessage *msg,str data);
^
cxdx_avp.h:96:12: warning: inline function 'cxdx_add_public_identity' declared but never defined
inline int cxdx_add_public_identity(AAAMessage *msg,str data);
^
cxdx_avp.h:88:12: warning: inline function 'cxdx_add_user_name' declared but never defined
inline int cxdx_add_user_name(AAAMessage *msg,str data);
^
cxdx_avp.h:80:12: warning: inline function 'cxdx_add_auth_session_state' declared but never defined
inline int cxdx_add_auth_session_state(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:72:12: warning: inline function 'cxdx_add_vendor_specific_appid' declared but never defined
inline int cxdx_add_vendor_specific_appid(AAAMessage *msg,unsigned int vendor_id,unsigned int auth_id,unsigned int acct_id);
^
cxdx_avp.h:62:12: warning: inline function 'cxdx_add_destination_realm' declared but never defined
inline int cxdx_add_destination_realm(AAAMessage *msg, str data);
--
from cxdx_lir.c:47:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from scscf_list.c:46:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from scscf_list.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from db.c:56:
scscf_list.h:150:13: warning: inline function 'i_unlock' declared but never defined
inline void i_unlock(unsigned int hash);
^
scscf_list.h:149:13: warning: inline function 'i_lock' declared but never defined
inline void i_lock(unsigned int hash);
^
scscf_list.h:148:21: warning: inline function 'get_call_id_hash' declared but never defined
inline unsigned int get_call_id_hash(str callid,int hash_size);
--
from db.c:56:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from db.c:56:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_avp.c:47:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_avp.c:46:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from nds.c:62:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from nds.c:62:
scscf_list.h:150:13: warning: inline function 'i_unlock' declared but never defined
inline void i_unlock(unsigned int hash);
^
scscf_list.h:149:13: warning: inline function 'i_lock' declared but never defined
inline void i_lock(unsigned int hash);
^
scscf_list.h:148:21: warning: inline function 'get_call_id_hash' declared but never defined
inline unsigned int get_call_id_hash(str callid,int hash_size);
--
from nds.c:62:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from registration.c:47:
scscf_list.h:150:13: warning: inline function 'i_unlock' declared but never defined
inline void i_unlock(unsigned int hash);
^
scscf_list.h:149:13: warning: inline function 'i_lock' declared but never defined
inline void i_lock(unsigned int hash);
^
scscf_list.h:148:21: warning: inline function 'get_call_id_hash' declared but never defined
inline unsigned int get_call_id_hash(str callid,int hash_size);
--
from registration.c:47:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from registration.c:47:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from mod.c:49:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from mod.c:49:
scscf_list.h:150:13: warning: inline function 'i_unlock' declared but never defined
inline void i_unlock(unsigned int hash);
^
scscf_list.h:149:13: warning: inline function 'i_lock' declared but never defined
inline void i_lock(unsigned int hash);
^
scscf_list.h:148:21: warning: inline function 'get_call_id_hash' declared but never defined
inline unsigned int get_call_id_hash(str callid,int hash_size);
--
from mod.c:49:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from location.c:46:
scscf_list.h:150:13: warning: inline function 'i_unlock' declared but never defined
inline void i_unlock(unsigned int hash);
^
scscf_list.h:149:13: warning: inline function 'i_lock' declared but never defined
inline void i_lock(unsigned int hash);
^
scscf_list.h:148:21: warning: inline function 'get_call_id_hash' declared but never defined
inline unsigned int get_call_id_hash(str callid,int hash_size);
--
from location.c:46:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from location.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_uar.c:52:
scscf_list.h:150:13: warning: inline function 'i_unlock' declared but never defined
inline void i_unlock(unsigned int hash);
^
scscf_list.h:149:13: warning: inline function 'i_lock' declared but never defined
inline void i_lock(unsigned int hash);
^
scscf_list.h:148:21: warning: inline function 'get_call_id_hash' declared but never defined
inline unsigned int get_call_id_hash(str callid,int hash_size);
--
In file included from cxdx_uar.c:50:0:
cxdx_avp.h:274:12: warning: inline function 'cxdx_add_result_code' declared but never defined
inline int cxdx_add_result_code(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:266:12: warning: inline function 'cxdx_get_user_name' declared but never defined
inline str cxdx_get_user_name(AAAMessage *msg);
^
cxdx_avp.h:259:17: warning: inline function 'cxdx_get_next_public_identity' declared but never defined
inline AAA_AVP* cxdx_get_next_public_identity(AAAMessage *msg,AAA_AVP* pos,int avp_code,int vendor_id,const char *func);
^
cxdx_avp.h:248:12: warning: inline function 'cxdx_add_userdata_available' declared but never defined
inline int cxdx_add_userdata_available(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:240:12: warning: inline function 'cxdx_add_server_assignment_type' declared but never defined
inline int cxdx_add_server_assignment_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:232:12: warning: inline function 'cxdx_get_charging_info' declared but never defined
inline int cxdx_get_charging_info(AAAMessage *msg,str *ccf1,str *ccf2,str *ecf1,str *ecf2);
^
cxdx_avp.h:225:12: warning: inline function 'cxdx_get_user_data' declared but never defined
inline str cxdx_get_user_data(AAAMessage *msg);
^
cxdx_avp.h:184:12: warning: inline function 'cxdx_get_sip_number_auth_items' declared but never defined
inline int cxdx_get_sip_number_auth_items(AAAMessage *msg, int *data);
^
cxdx_avp.h:177:12: warning: inline function 'cxdx_add_server_name' declared but never defined
inline int cxdx_add_server_name(AAAMessage *msg,str data);
--
In file included from cxdx_uar.c:50:0:
cxdx_avp.h:169:12: warning: inline function 'cxdx_add_sip_auth_data_item_request' declared but never defined
inline int cxdx_add_sip_auth_data_item_request(AAAMessage *msg, str auth_scheme, str auth, str username, str realm,str method, str server_name);
^
cxdx_avp.h:160:12: warning: inline function 'cxdx_add_sip_number_auth_items' declared but never defined
inline int cxdx_add_sip_number_auth_items(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:152:12: warning: inline function 'cxdx_get_capabilities' declared but never defined
inline int cxdx_get_capabilities(AAAMessage *msg,int **m,int *m_cnt,int **o,int *o_cnt, str **p,int *p_cnt);
^
cxdx_avp.h:141:12: warning: inline function 'cxdx_get_server_name' declared but never defined
inline str cxdx_get_server_name(AAAMessage *msg);
^
cxdx_avp.h:134:12: warning: inline function 'cxdx_get_experimental_result_code' declared but never defined
inline int cxdx_get_experimental_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:127:12: warning: inline function 'cxdx_get_result_code' declared but never defined
inline int cxdx_get_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:120:12: warning: inline function 'cxdx_add_authorization_type' declared but never defined
inline int cxdx_add_authorization_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:112:12: warning: inline function 'cxdx_add_UAR_flags' declared but never defined
inline int cxdx_add_UAR_flags(AAAMessage *msg, unsigned int sos_reg);
^
cxdx_avp.h:104:12: warning: inline function 'cxdx_add_visited_network_id' declared but never defined
inline int cxdx_add_visited_network_id(AAAMessage *msg,str data);
^
cxdx_avp.h:96:12: warning: inline function 'cxdx_add_public_identity' declared but never defined
inline int cxdx_add_public_identity(AAAMessage *msg,str data);
^
cxdx_avp.h:88:12: warning: inline function 'cxdx_add_user_name' declared but never defined
inline int cxdx_add_user_name(AAAMessage *msg,str data);
^
cxdx_avp.h:80:12: warning: inline function 'cxdx_add_auth_session_state' declared but never defined
inline int cxdx_add_auth_session_state(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:72:12: warning: inline function 'cxdx_add_vendor_specific_appid' declared but never defined
inline int cxdx_add_vendor_specific_appid(AAAMessage *msg,unsigned int vendor_id,unsigned int auth_id,unsigned int acct_id);
^
cxdx_avp.h:62:12: warning: inline function 'cxdx_add_destination_realm' declared but never defined
inline int cxdx_add_destination_realm(AAAMessage *msg, str data);
--
from cxdx_uar.c:48:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_uar.c:47:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from rx_asr.c:61:0:
rx_avp.h:93:12: warning: inline function 'rx_get_result_code' declared but never defined
inline int rx_get_result_code(AAAMessage *msg, unsigned int *data);
^
rx_avp.h:85:12: warning: inline function 'rx_add_media_component_description_avp_register' declared but never defined
inline int rx_add_media_component_description_avp_register(AAAMessage *msg);
--
In file included from rx_asr.c:61:0:
rx_avp.h:82:12: warning: inline function 'rx_add_media_component_description_avp' declared but never defined
inline int rx_add_media_component_description_avp(AAAMessage *msg, int number, str *media_description, str *ipA, str *portA, str *ipB, str *portB, str *transport,
^
rx_avp.h:80:12: warning: inline function 'rx_add_auth_application_id_avp' declared but never defined
inline int rx_add_auth_application_id_avp(AAAMessage *msg, unsigned int data);
^
rx_avp.h:79:12: warning: inline function 'rx_add_subscription_id_avp' declared but never defined
inline int rx_add_subscription_id_avp(AAAMessage *msg, str identifier, int identifier_type);
--
from rx_asr.c:57:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rx_asr.c:54:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from rx_aar.c:61:0:
rx_avp.h:93:12: warning: inline function 'rx_get_result_code' declared but never defined
inline int rx_get_result_code(AAAMessage *msg, unsigned int *data);
^
rx_avp.h:85:12: warning: inline function 'rx_add_media_component_description_avp_register' declared but never defined
inline int rx_add_media_component_description_avp_register(AAAMessage *msg);
--
In file included from rx_aar.c:61:0:
rx_avp.h:82:12: warning: inline function 'rx_add_media_component_description_avp' declared but never defined
inline int rx_add_media_component_description_avp(AAAMessage *msg, int number, str *media_description, str *ipA, str *portA, str *ipB, str *portB, str *transport,
^
rx_avp.h:80:12: warning: inline function 'rx_add_auth_application_id_avp' declared but never defined
inline int rx_add_auth_application_id_avp(AAAMessage *msg, unsigned int data);
^
rx_avp.h:79:12: warning: inline function 'rx_add_subscription_id_avp' declared but never defined
inline int rx_add_subscription_id_avp(AAAMessage *msg, str identifier, int identifier_type);
--
from rx_aar.c:56:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rx_aar.c:53:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from cdpeventprocessor.c:48:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from rx_str.c:58:0:
rx_avp.h:93:12: warning: inline function 'rx_get_result_code' declared but never defined
inline int rx_get_result_code(AAAMessage *msg, unsigned int *data);
^
rx_avp.h:85:12: warning: inline function 'rx_add_media_component_description_avp_register' declared but never defined
inline int rx_add_media_component_description_avp_register(AAAMessage *msg);
--
In file included from rx_str.c:58:0:
rx_avp.h:82:12: warning: inline function 'rx_add_media_component_description_avp' declared but never defined
inline int rx_add_media_component_description_avp(AAAMessage *msg, int number, str *media_description, str *ipA, str *portA, str *ipB, str *portB, str *transport,
^
rx_avp.h:80:12: warning: inline function 'rx_add_auth_application_id_avp' declared but never defined
inline int rx_add_auth_application_id_avp(AAAMessage *msg, unsigned int data);
^
rx_avp.h:79:12: warning: inline function 'rx_add_subscription_id_avp' declared but never defined
inline int rx_add_subscription_id_avp(AAAMessage *msg, str identifier, int identifier_type);
--
from rx_str.c:55:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rx_str.c:53:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from rx_avp.c:54:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from rx_avp.c:52:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from mod.c:62:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from mod.c:61:0:
../../modules/dialog_ng/dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from mod.c:54:
../../lib/ims/../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from rx_authdata.c:67:0:
rx_avp.h:93:12: warning: inline function 'rx_get_result_code' declared but never defined
inline int rx_get_result_code(AAAMessage *msg, unsigned int *data);
^
rx_avp.h:85:12: warning: inline function 'rx_add_media_component_description_avp_register' declared but never defined
inline int rx_add_media_component_description_avp_register(AAAMessage *msg);
--
In file included from rx_authdata.c:67:0:
rx_avp.h:82:12: warning: inline function 'rx_add_media_component_description_avp' declared but never defined
inline int rx_add_media_component_description_avp(AAAMessage *msg, int number, str *media_description, str *ipA, str *portA, str *ipB, str *portB, str *transport,
^
rx_avp.h:80:12: warning: inline function 'rx_add_auth_application_id_avp' declared but never defined
inline int rx_add_auth_application_id_avp(AAAMessage *msg, unsigned int data);
^
rx_avp.h:79:12: warning: inline function 'rx_add_subscription_id_avp' declared but never defined
inline int rx_add_subscription_id_avp(AAAMessage *msg, str identifier, int identifier_type);
--
from rx_authdata.c:65:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from rx_authdata.c:58:0:
../../modules/dialog_ng/dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from rx_authdata.c:54:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from reg_mod.c:57:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from subscribe.c:31:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from service_routes.c:23:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from save.c:46:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from lookup.c:47:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ul_callback.c:46:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from async_reginfo.c:49:
../pua/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from notify.c:31:
../ims_usrloc_pcscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from server_assignment.c:46:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from reply.c:40:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from regpv.c:36:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from registrar_notify.c:46:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from common.c:41:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from cxdx_callbacks.c:27:0:
cxdx_avp.h:275:12: warning: inline function 'cxdx_add_result_code' declared but never defined
inline int cxdx_add_result_code(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:267:12: warning: inline function 'cxdx_get_user_name' declared but never defined
inline str cxdx_get_user_name(AAAMessage *msg);
^
cxdx_avp.h:260:17: warning: inline function 'cxdx_get_next_public_identity' declared but never defined
inline AAA_AVP* cxdx_get_next_public_identity(AAAMessage *msg,AAA_AVP* pos,int avp_code,int vendor_id,const char *func);
^
cxdx_avp.h:249:12: warning: inline function 'cxdx_add_userdata_available' declared but never defined
inline int cxdx_add_userdata_available(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:241:12: warning: inline function 'cxdx_add_server_assignment_type' declared but never defined
inline int cxdx_add_server_assignment_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:233:12: warning: inline function 'cxdx_get_charging_info' declared but never defined
inline int cxdx_get_charging_info(AAAMessage *msg,str *ccf1,str *ccf2,str *ecf1,str *ecf2);
^
cxdx_avp.h:226:12: warning: inline function 'cxdx_get_user_data' declared but never defined
inline str cxdx_get_user_data(AAAMessage *msg);
^
cxdx_avp.h:185:12: warning: inline function 'cxdx_get_sip_number_auth_items' declared but never defined
inline int cxdx_get_sip_number_auth_items(AAAMessage *msg, int *data);
^
cxdx_avp.h:178:12: warning: inline function 'cxdx_add_server_name' declared but never defined
inline int cxdx_add_server_name(AAAMessage *msg,str data);
--
In file included from cxdx_callbacks.c:27:0:
cxdx_avp.h:170:12: warning: inline function 'cxdx_add_sip_auth_data_item_request' declared but never defined
inline int cxdx_add_sip_auth_data_item_request(AAAMessage *msg, str auth_scheme, str auth, str username, str realm,str method, str server_name);
^
cxdx_avp.h:161:12: warning: inline function 'cxdx_add_sip_number_auth_items' declared but never defined
inline int cxdx_add_sip_number_auth_items(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:153:12: warning: inline function 'cxdx_get_capabilities' declared but never defined
inline int cxdx_get_capabilities(AAAMessage *msg,int **m,int *m_cnt,int **o,int *o_cnt, str **p,int *p_cnt);
^
cxdx_avp.h:142:12: warning: inline function 'cxdx_get_server_name' declared but never defined
inline str cxdx_get_server_name(AAAMessage *msg);
^
cxdx_avp.h:135:12: warning: inline function 'cxdx_get_experimental_result_code' declared but never defined
inline int cxdx_get_experimental_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:128:12: warning: inline function 'cxdx_get_result_code' declared but never defined
inline int cxdx_get_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:121:12: warning: inline function 'cxdx_add_authorization_type' declared but never defined
inline int cxdx_add_authorization_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:113:12: warning: inline function 'cxdx_add_UAR_flags' declared but never defined
inline int cxdx_add_UAR_flags(AAAMessage *msg, unsigned int sos_reg);
^
cxdx_avp.h:105:12: warning: inline function 'cxdx_add_visited_network_id' declared but never defined
inline int cxdx_add_visited_network_id(AAAMessage *msg,str data);
^
cxdx_avp.h:97:12: warning: inline function 'cxdx_add_public_identity' declared but never defined
inline int cxdx_add_public_identity(AAAMessage *msg,str data);
^
cxdx_avp.h:89:12: warning: inline function 'cxdx_add_user_name' declared but never defined
inline int cxdx_add_user_name(AAAMessage *msg,str data);
^
cxdx_avp.h:81:12: warning: inline function 'cxdx_add_auth_session_state' declared but never defined
inline int cxdx_add_auth_session_state(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:73:12: warning: inline function 'cxdx_add_vendor_specific_appid' declared but never defined
inline int cxdx_add_vendor_specific_appid(AAAMessage *msg,unsigned int vendor_id,unsigned int auth_id,unsigned int acct_id);
^
cxdx_avp.h:63:12: warning: inline function 'cxdx_add_destination_realm' declared but never defined
inline int cxdx_add_destination_realm(AAAMessage *msg, str data);
^
cxdx_avp.h:56:12: warning: inline function 'cxdx_add_call_id' declared but never defined
inline int cxdx_add_call_id(AAAMessage *msg, str data);
--
from cxdx_callbacks.c:26:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_callbacks.c:23:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from cxdx_avp.c:48:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_avp.c:47:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from usrloc_cb.c:44:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from save.c:66:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from cxdx_sar.c:52:0:
cxdx_avp.h:275:12: warning: inline function 'cxdx_add_result_code' declared but never defined
inline int cxdx_add_result_code(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:267:12: warning: inline function 'cxdx_get_user_name' declared but never defined
inline str cxdx_get_user_name(AAAMessage *msg);
^
cxdx_avp.h:260:17: warning: inline function 'cxdx_get_next_public_identity' declared but never defined
inline AAA_AVP* cxdx_get_next_public_identity(AAAMessage *msg,AAA_AVP* pos,int avp_code,int vendor_id,const char *func);
^
cxdx_avp.h:249:12: warning: inline function 'cxdx_add_userdata_available' declared but never defined
inline int cxdx_add_userdata_available(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:241:12: warning: inline function 'cxdx_add_server_assignment_type' declared but never defined
inline int cxdx_add_server_assignment_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:233:12: warning: inline function 'cxdx_get_charging_info' declared but never defined
inline int cxdx_get_charging_info(AAAMessage *msg,str *ccf1,str *ccf2,str *ecf1,str *ecf2);
^
cxdx_avp.h:226:12: warning: inline function 'cxdx_get_user_data' declared but never defined
inline str cxdx_get_user_data(AAAMessage *msg);
^
cxdx_avp.h:185:12: warning: inline function 'cxdx_get_sip_number_auth_items' declared but never defined
inline int cxdx_get_sip_number_auth_items(AAAMessage *msg, int *data);
^
cxdx_avp.h:178:12: warning: inline function 'cxdx_add_server_name' declared but never defined
inline int cxdx_add_server_name(AAAMessage *msg,str data);
--
In file included from cxdx_sar.c:52:0:
cxdx_avp.h:170:12: warning: inline function 'cxdx_add_sip_auth_data_item_request' declared but never defined
inline int cxdx_add_sip_auth_data_item_request(AAAMessage *msg, str auth_scheme, str auth, str username, str realm,str method, str server_name);
^
cxdx_avp.h:161:12: warning: inline function 'cxdx_add_sip_number_auth_items' declared but never defined
inline int cxdx_add_sip_number_auth_items(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:153:12: warning: inline function 'cxdx_get_capabilities' declared but never defined
inline int cxdx_get_capabilities(AAAMessage *msg,int **m,int *m_cnt,int **o,int *o_cnt, str **p,int *p_cnt);
^
cxdx_avp.h:142:12: warning: inline function 'cxdx_get_server_name' declared but never defined
inline str cxdx_get_server_name(AAAMessage *msg);
^
cxdx_avp.h:135:12: warning: inline function 'cxdx_get_experimental_result_code' declared but never defined
inline int cxdx_get_experimental_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:128:12: warning: inline function 'cxdx_get_result_code' declared but never defined
inline int cxdx_get_result_code(AAAMessage *msg, int *data);
^
cxdx_avp.h:121:12: warning: inline function 'cxdx_add_authorization_type' declared but never defined
inline int cxdx_add_authorization_type(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:113:12: warning: inline function 'cxdx_add_UAR_flags' declared but never defined
inline int cxdx_add_UAR_flags(AAAMessage *msg, unsigned int sos_reg);
^
cxdx_avp.h:105:12: warning: inline function 'cxdx_add_visited_network_id' declared but never defined
inline int cxdx_add_visited_network_id(AAAMessage *msg,str data);
^
cxdx_avp.h:97:12: warning: inline function 'cxdx_add_public_identity' declared but never defined
inline int cxdx_add_public_identity(AAAMessage *msg,str data);
^
cxdx_avp.h:89:12: warning: inline function 'cxdx_add_user_name' declared but never defined
inline int cxdx_add_user_name(AAAMessage *msg,str data);
^
cxdx_avp.h:81:12: warning: inline function 'cxdx_add_auth_session_state' declared but never defined
inline int cxdx_add_auth_session_state(AAAMessage *msg,unsigned int data);
^
cxdx_avp.h:73:12: warning: inline function 'cxdx_add_vendor_specific_appid' declared but never defined
inline int cxdx_add_vendor_specific_appid(AAAMessage *msg,unsigned int vendor_id,unsigned int auth_id,unsigned int acct_id);
^
cxdx_avp.h:63:12: warning: inline function 'cxdx_add_destination_realm' declared but never defined
inline int cxdx_add_destination_realm(AAAMessage *msg, str data);
^
cxdx_avp.h:56:12: warning: inline function 'cxdx_add_call_id' declared but never defined
inline int cxdx_add_call_id(AAAMessage *msg, str data);
--
from cxdx_sar.c:48:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cxdx_sar.c:47:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from api.c:31:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from path.c:33:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from lookup.c:41:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from sip_msg.c:36:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from userdata_parser.c:44:
../../modules/ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from reg_mod.c:73:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from reg_mod.c:56:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from udomain.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from pcontact.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlist.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ul_mod.c:54:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ul_rpc.c:50:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from usrloc.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from usrloc_db.c:9:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ul_callback.c:52:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from hslot.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from udomain.c:66:0:
bin_utils.h:93:12: warning: inline function 'bin_decode_str' declared but never defined
inline int bin_decode_str(bin_data *x,str *s);
^
bin_utils.h:92:12: warning: inline function 'bin_encode_str' declared but never defined
inline int bin_encode_str(bin_data *x,str *s);
^
bin_utils.h:90:12: warning: inline function 'bin_decode_time_t' declared but never defined
inline int bin_decode_time_t(bin_data *x,time_t *c);
^
bin_utils.h:89:12: warning: inline function 'bin_encode_time_t' declared but never defined
inline int bin_encode_time_t(bin_data *x,time_t k);
^
bin_utils.h:87:12: warning: inline function 'bin_decode_uint' declared but never defined
inline int bin_decode_uint(bin_data *x,unsigned int *c);
^
bin_utils.h:86:12: warning: inline function 'bin_encode_uint' declared but never defined
inline int bin_encode_uint(bin_data *x,unsigned int k);
^
bin_utils.h:84:12: warning: inline function 'bin_decode_int' declared but never defined
inline int bin_decode_int(bin_data *x,int *c);
^
bin_utils.h:83:12: warning: inline function 'bin_encode_int' declared but never defined
inline int bin_encode_int(bin_data *x,int k);
^
bin_utils.h:81:12: warning: inline function 'bin_decode_ushort' declared but never defined
inline int bin_decode_ushort(bin_data *x,unsigned short *c);
^
bin_utils.h:80:12: warning: inline function 'bin_encode_ushort' declared but never defined
inline int bin_encode_ushort(bin_data *x,unsigned short k);
^
bin_utils.h:78:12: warning: inline function 'bin_decode_short' declared but never defined
inline int bin_decode_short(bin_data *x,short *c);
^
bin_utils.h:77:12: warning: inline function 'bin_encode_short' declared but never defined
inline int bin_encode_short(bin_data *x,short k);
^
bin_utils.h:75:12: warning: inline function 'bin_decode_uchar' declared but never defined
inline int bin_decode_uchar(bin_data *x,unsigned char *c);
^
bin_utils.h:74:12: warning: inline function 'bin_encode_uchar' declared but never defined
inline int bin_encode_uchar(bin_data *x,unsigned char k);
^
bin_utils.h:72:12: warning: inline function 'bin_decode_char' declared but never defined
inline int bin_decode_char(bin_data *x,char *c);
^
bin_utils.h:71:12: warning: inline function 'bin_encode_char' declared but never defined
inline int bin_encode_char(bin_data *x,char k);
^
bin_utils.h:69:13: warning: inline function 'bin_print' declared but never defined
inline void bin_print(bin_data *x);
^
bin_utils.h:68:13: warning: inline function 'bin_free' declared but never defined
inline void bin_free(bin_data *x);
^
bin_utils.h:67:12: warning: inline function 'bin_expand' declared but never defined
inline int bin_expand(bin_data *x, int delta);
^
bin_utils.h:66:12: warning: inline function 'bin_realloc' declared but never defined
inline int bin_realloc(bin_data *x, int delta);
^
bin_utils.h:65:12: warning: inline function 'bin_alloc' declared but never defined
inline int bin_alloc(bin_data *x, int max_len);
--
from udomain.c:53:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ucontact.c:53:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from hslot_sp.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from bin_utils.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from subscribe.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dlist.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from impurecord.c:62:0:
../../modules/dialog_ng/dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
In file included from impurecord.c:57:0:
bin_utils.h:93:12: warning: inline function 'bin_decode_str' declared but never defined
inline int bin_decode_str(bin_data *x,str *s);
^
bin_utils.h:92:12: warning: inline function 'bin_encode_str' declared but never defined
inline int bin_encode_str(bin_data *x,str *s);
^
bin_utils.h:90:12: warning: inline function 'bin_decode_time_t' declared but never defined
inline int bin_decode_time_t(bin_data *x,time_t *c);
^
bin_utils.h:89:12: warning: inline function 'bin_encode_time_t' declared but never defined
inline int bin_encode_time_t(bin_data *x,time_t k);
^
bin_utils.h:87:12: warning: inline function 'bin_decode_uint' declared but never defined
inline int bin_decode_uint(bin_data *x,unsigned int *c);
^
bin_utils.h:86:12: warning: inline function 'bin_encode_uint' declared but never defined
inline int bin_encode_uint(bin_data *x,unsigned int k);
^
bin_utils.h:84:12: warning: inline function 'bin_decode_int' declared but never defined
inline int bin_decode_int(bin_data *x,int *c);
^
bin_utils.h:83:12: warning: inline function 'bin_encode_int' declared but never defined
inline int bin_encode_int(bin_data *x,int k);
^
bin_utils.h:81:12: warning: inline function 'bin_decode_ushort' declared but never defined
inline int bin_decode_ushort(bin_data *x,unsigned short *c);
^
bin_utils.h:80:12: warning: inline function 'bin_encode_ushort' declared but never defined
inline int bin_encode_ushort(bin_data *x,unsigned short k);
^
bin_utils.h:78:12: warning: inline function 'bin_decode_short' declared but never defined
inline int bin_decode_short(bin_data *x,short *c);
^
bin_utils.h:77:12: warning: inline function 'bin_encode_short' declared but never defined
inline int bin_encode_short(bin_data *x,short k);
^
bin_utils.h:75:12: warning: inline function 'bin_decode_uchar' declared but never defined
inline int bin_decode_uchar(bin_data *x,unsigned char *c);
^
bin_utils.h:74:12: warning: inline function 'bin_encode_uchar' declared but never defined
inline int bin_encode_uchar(bin_data *x,unsigned char k);
^
bin_utils.h:72:12: warning: inline function 'bin_decode_char' declared but never defined
inline int bin_decode_char(bin_data *x,char *c);
^
bin_utils.h:71:12: warning: inline function 'bin_encode_char' declared but never defined
inline int bin_encode_char(bin_data *x,char k);
^
bin_utils.h:69:13: warning: inline function 'bin_print' declared but never defined
inline void bin_print(bin_data *x);
^
bin_utils.h:68:13: warning: inline function 'bin_free' declared but never defined
inline void bin_free(bin_data *x);
^
bin_utils.h:67:12: warning: inline function 'bin_expand' declared but never defined
inline int bin_expand(bin_data *x, int delta);
^
bin_utils.h:66:12: warning: inline function 'bin_realloc' declared but never defined
inline int bin_realloc(bin_data *x, int delta);
^
bin_utils.h:65:12: warning: inline function 'bin_alloc' declared but never defined
inline int bin_alloc(bin_data *x, int max_len);
--
from impurecord.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from ul_mod.c:67:0:
../../modules/dialog_ng/dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from ul_mod.c:47:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ul_rpc.c:25:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from usrloc.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from hslot.c:48:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from usrloc_db.c:4:0:
bin_utils.h:93:12: warning: inline function 'bin_decode_str' declared but never defined
inline int bin_decode_str(bin_data *x,str *s);
^
bin_utils.h:92:12: warning: inline function 'bin_encode_str' declared but never defined
inline int bin_encode_str(bin_data *x,str *s);
^
bin_utils.h:90:12: warning: inline function 'bin_decode_time_t' declared but never defined
inline int bin_decode_time_t(bin_data *x,time_t *c);
^
bin_utils.h:89:12: warning: inline function 'bin_encode_time_t' declared but never defined
inline int bin_encode_time_t(bin_data *x,time_t k);
^
bin_utils.h:87:12: warning: inline function 'bin_decode_uint' declared but never defined
inline int bin_decode_uint(bin_data *x,unsigned int *c);
^
bin_utils.h:86:12: warning: inline function 'bin_encode_uint' declared but never defined
inline int bin_encode_uint(bin_data *x,unsigned int k);
^
bin_utils.h:84:12: warning: inline function 'bin_decode_int' declared but never defined
inline int bin_decode_int(bin_data *x,int *c);
^
bin_utils.h:83:12: warning: inline function 'bin_encode_int' declared but never defined
inline int bin_encode_int(bin_data *x,int k);
^
bin_utils.h:81:12: warning: inline function 'bin_decode_ushort' declared but never defined
inline int bin_decode_ushort(bin_data *x,unsigned short *c);
^
bin_utils.h:80:12: warning: inline function 'bin_encode_ushort' declared but never defined
inline int bin_encode_ushort(bin_data *x,unsigned short k);
^
bin_utils.h:78:12: warning: inline function 'bin_decode_short' declared but never defined
inline int bin_decode_short(bin_data *x,short *c);
^
bin_utils.h:77:12: warning: inline function 'bin_encode_short' declared but never defined
inline int bin_encode_short(bin_data *x,short k);
^
bin_utils.h:75:12: warning: inline function 'bin_decode_uchar' declared but never defined
inline int bin_decode_uchar(bin_data *x,unsigned char *c);
^
bin_utils.h:74:12: warning: inline function 'bin_encode_uchar' declared but never defined
inline int bin_encode_uchar(bin_data *x,unsigned char k);
^
bin_utils.h:72:12: warning: inline function 'bin_decode_char' declared but never defined
inline int bin_decode_char(bin_data *x,char *c);
^
bin_utils.h:71:12: warning: inline function 'bin_encode_char' declared but never defined
inline int bin_encode_char(bin_data *x,char k);
^
bin_utils.h:69:13: warning: inline function 'bin_print' declared but never defined
inline void bin_print(bin_data *x);
^
bin_utils.h:68:13: warning: inline function 'bin_free' declared but never defined
inline void bin_free(bin_data *x);
^
bin_utils.h:67:12: warning: inline function 'bin_expand' declared but never defined
inline int bin_expand(bin_data *x, int delta);
^
bin_utils.h:66:12: warning: inline function 'bin_realloc' declared but never defined
inline int bin_realloc(bin_data *x, int delta);
^
bin_utils.h:65:12: warning: inline function 'bin_alloc' declared but never defined
inline int bin_alloc(bin_data *x, int max_len);
--
from usrloc_db.c:2:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ul_callback.c:64:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from contact_hslot.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ro_session_hash.c:8:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ccr.c:1:
../cdp_avp/../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp_avp/../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp_avp/../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from ro_timer.c:16:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from ro_timer.c:15:0:
ro_session_hash.h:179:13: warning: inline function 'destroy_ro_session' declared but never defined
inline void destroy_ro_session(struct ro_session *ro_session);
--
from ro_timer.c:15:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from diameter_ro.c:3:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from ro_avp.c:7:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from mod.c:16:0:
ro_session_hash.h:179:13: warning: inline function 'destroy_ro_session' declared but never defined
inline void destroy_ro_session(struct ro_session *ro_session);
--
from mod.c:12:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from mod.c:11:0:
../../modules/dialog_ng/dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from mod.c:11:
../../modules/dialog_ng/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ims_ro.c:25:
ro_session_hash.h:179:13: warning: inline function 'destroy_ro_session' declared but never defined
inline void destroy_ro_session(struct ro_session *ro_session);
--
from ims_ro.c:15:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
In file included from ims_ro.c:11:0:
../../modules/dialog_ng/dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from ims_ro.c:9:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from dialog.c:2:
ro_session_hash.h:179:13: warning: inline function 'destroy_ro_session' declared but never defined
inline void destroy_ro_session(struct ro_session *ro_session);
--
from dialog.c:2:
../cdp/transaction.h:80:13: warning: inline function 'cdp_free_trans' declared but never defined
inline void cdp_free_trans(cdp_trans_t *x);
^
../cdp/transaction.h:79:21: warning: inline function 'cdp_take_trans' declared but never defined
inline cdp_trans_t* cdp_take_trans(AAAMessage *msg);
^
../cdp/transaction.h:77:21: warning: inline function 'cdp_add_trans' declared but never defined
inline cdp_trans_t* cdp_add_trans(AAAMessage *msg,AAATransactionCallback_f *cb, void *ptr,int timeout,int auto_drop);
--
from dialog.c:2:
../../modules/dialog_ng/dlg_hash.h:215:13: warning: inline function 'destroy_dlg' declared but never defined
inline void destroy_dlg(struct dlg_cell *dlg);
--
from dialog.c:2:
../../modules/dialog_ng/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ro_db_handler.c:1:
ro_session_hash.h:179:13: warning: inline function 'destroy_ro_session' declared but never defined
inline void destroy_ro_session(struct ro_session *ro_session);
--
from ro_db_handler.c:1:
../ims_usrloc_scscf/../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from purple_sip.c:27:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from purple.c:32:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from auth_hdrs.c:38:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from auth_identity.c:60:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from auth_dynstr.c:36:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from ob_mod.c:40:
../../parser/contact/../parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from kz_trans.c:43:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from kz_pua.c:9:
../presence/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cnxcc_redis.c:26:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from cnxcc_check.c:31:0:
cnxcc.h:36:12: warning: inline function 'timestamp2isodt' declared but never defined
inline int timestamp2isodt(str *dest, unsigned int timestamp);
^
cnxcc.h:35:21: warning: inline function 'get_current_timestamp' declared but never defined
inline unsigned int get_current_timestamp();
^
cnxcc.h:34:13: warning: inline function 'get_datetime' declared but never defined
inline void get_datetime(str *dest);
--
from cnxcc_check.c:30:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from cnxcc_select.c:28:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from cnxcc_mod.c:63:0:
cnxcc.h:36:12: warning: inline function 'timestamp2isodt' declared but never defined
inline int timestamp2isodt(str *dest, unsigned int timestamp);
^
cnxcc.h:35:21: warning: inline function 'get_current_timestamp' declared but never defined
inline unsigned int get_current_timestamp();
^
cnxcc.h:34:13: warning: inline function 'get_datetime' declared but never defined
inline void get_datetime(str *dest);
--
from cnxcc_mod.c:46:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
cnxcc_rpc.c: At top level:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from evapi_mod.c:41:
../../modules/tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from janssonrpc_connect.c:35:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from janssonrpc_funcs.c:26:
../tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from janssonrpc_io.c:43:
../tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
from janssonrpc_mod.c:32:
../tm/../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from janssonrpc_srv.c:34:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
--
In file included from janssonrpc_server.c:34:0:
../../parser/parse_param.h:146:19: warning: inline function 'parse_param' declared but never defined
extern inline int parse_param(str *_s, pclass_t _c, param_hooks_t *_h, param_t *t);
```
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/286
In testing environment It would be nice to be able to append sip headers `X-Kamailio-test` and `X-Kamailio-test-ID` as a way to identify a collection of request/responses related to a a single test.
Be able to generate tests reports via debugger RPC command using the value of `X-Kamailio-test` as key.
The content of report could be:
* SIP message received
* SIP messages sended
* flow of config execution routes ( `start`, `end`, `exit` )
* list of the variable and its value
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/8