### Description
I think something wrong with integer comparison when tested this config file
```
listen=udp:[::1]:5060
listen=udp:127.0.0.1:5060
loadmodule "xlog.so"
loadmodule "sdpops.so"
request_route {
if (sdp_get_address_family() ieq 6 ) {
xlog("L_WARN", "sdp_get_address_family == 6\n");
} else if (sdp_get_address_family() ieq 4) {
xlog("L_WARN", "sdp_get_address_family == 4\n");
} else if (sdp_get_address_family() ieq 1) {
xlog("L_WARN", "cannot detect sdp family\n");
}
}
```
The expected output of IP address type used in SDP. But really I always get "cannot detect sdp family" message.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2701
### Description
As admin, I want check TLS encrypted call signaling on local Kamailio.
To do this I can use [this instruction](https://voipembedded.wordpress.com/2021/03/22/troubleshooting-….
Here used `siptrace` module.
But at the same time, I need to send the same call signaling to the company `Homer` server.
So I need to send a copy of the call signaling in two directions.
Could you add the ability to allow specify multiple values in `duplicate_uri` param like.
```
modparam("siptrace", "duplicate_uri", "<sip:127.0.0.1:9060>,<sip:homer.example.com:9060>")
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/2693