Re: [SR-Users] Releasing Kamailio 5.3.9 - last in 5.3.x series

2021-12-07 Thread Daniel-Constantin Mierla
Hello, short reminder about releasing Kamailio v5.3.9 today -- as usual, any commit to be pushed to branch 5.3 should be announced to sr-dev mailing list and wait for the ack in order to avoid conflicts during building the release. Cheers, Daniel On 06.12.21 14:53, Daniel-Constantin Mierla wrote

[SR-Users] HTTP Requests for API routing - Question on which module to use with KSR

2021-12-07 Thread Emilio Panighetti
Looking into using Kamailio to route calls via an HTTP API. Basic scenario is this: INVITE comes in (no registration). And Kamailio sends an HTTP request to a server with data extracted from the INVITE. Based on the response, call KSR.setdsturi() and other actions like normalizing phone numbers,

[SR-Users] SRTP/DTLS + RTP Header encryption

2021-12-07 Thread Rahul mm
Hi guys, Is it possible to achieve RTP header encryption along with payload in SRTP/DTLS ? So far what I've been able to see is RTP payload encryption. I'm using kamailo 5.5.0 and rtpengine 9.2.1.6 in webRTC scenario. Many thanks. BR, Rahul __

Re: [SR-Users] Manipulation of request-line

2021-12-07 Thread Alex Balashov
That will manipulate the request URI, but not the request line. — Sent from mobile, with due apologies for brevity and errors. > On Dec 7, 2021, at 4:16 PM, Karsten Horsmann wrote: > __ Kamailio - Users Mailing List - Non Commercial Discu

Re: [SR-Users] Manipulation of request-line

2021-12-07 Thread Karsten Horsmann
Hi, $ru = "sip:" + $rU + "@" + $td; Or simple $ru = $tu; could be the trick. Kind regards Karsten Horsmann Mihovil Kolaric schrieb am Di., 7. Dez. 2021, 20:18: > Hi, > > I have an issue with a SIP-client, that occasionally puts a blank between > the version SIP/2.0 and the CRLF at the and o

[SR-Users] Manipulation of request-line

2021-12-07 Thread Mihovil Kolaric
Hi, I have an issue with a SIP-client, that occasionally puts a blank between the version SIP/2.0 and the CRLF at the and of the request-line. (i.e. sends "ACK SIP/2.0 \r\n" instead of "ACK SIP/2.0\r\n"). Kamailio (as well as most SIP UAs) does not care about that error and successfully processe

Re: [SR-Users] Unquoted values from #!defenv

2021-12-07 Thread Ben Kaufman
Thank you. I've been using -A to set values thus far as CMD arguments to the container's ENTRYPOINT. If submitting a pull request, would it be preferrable to allow #!defenv/#!defenvs to accept undefined values, or to add new keywords like #!ifdefenv/#!ifdefenvs ? Ben Kaufman From: Daniel-Con

Re: [SR-Users] Unquoted values from #!defenv

2021-12-07 Thread Daniel-Constantin Mierla
The current behaviour targets the use of existing values from the environment variables. If you need other kind of features, you can propose pull requests. Or you can eventually have a start script that sets defines with -A cli parameter based on env variables. Cheers, Daniel On 06.12.21 21:56, B