<div dir="ltr"><div dir="ltr">On Tue, Dec 7, 2021 at 9:26 AM Kingsley Tart <<a href="mailto:kingsley@dns99.co.uk">kingsley@dns99.co.uk</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hi,<br>
<br>
I'm using Asterisk 18.8.0 with pjsip version 2.10.<br>
<br>
With a database defined endpoint, I can't find a way to define<br>
outbound_proxy with ";lr" (without the quotes) on the end.<br>
<br>
It works fine if I configure an endpoint in pjsip.conf, eg:<br>
<br>
-- 8< -----------------------------------------------------<br>
[custom]<br>
type=endpoint<br>
outbound_proxy=sip:88.141.1.10\;lr<br>
...<br>
<br>
# asterisk -r -x "pjsip show endpoint custom" | grep proxy<br>
 outbound_proxy                     : sip:88.141.1.10;lr<br>
-- 8< -----------------------------------------------------<br>
<br>
<br>
<br>
<br>
but if I try to do that in the database, it ignores everything up to<br>
the semicolon, eg:<br>
<br>
-- 8< -----------------------------------------------------<br>
MariaDB [asterisk_realtime]> SELECT id,outbound_proxy FROM ps_endpoints<br>
WHERE id=30;<br>
+----+--------------------+<br>
| id | outbound_proxy     |<br>
+----+--------------------+<br>
| 30 | sip:88.141.1.10;lr |<br>
+----+--------------------+<br>
<br>
# asterisk -r -x "pjsip show endpoint 30" | grep proxy<br>
 outbound_proxy                     : lr<br>
-- 8< -----------------------------------------------------<br>
<br>
<br>
<br>
I tried a backshash, just in case:<br>
<br>
-- 8< -----------------------------------------------------<br>
+----+---------------------+<br>
| id | outbound_proxy      |<br>
+----+---------------------+<br>
| 30 | sip:88.141.1.10\;lr |<br>
+----+---------------------+<br>
<br>
but this makes no difference.<br>
-- 8< -----------------------------------------------------<br>
<br>
<br>
<br>
I tried putting quotes round it:<br>
<br>
-- 8< -----------------------------------------------------<br>
+----+----------------------+<br>
| id | outbound_proxy       |<br>
+----+----------------------+<br>
| 30 | "sip:88.141.1.10;lr" |<br>
+----+----------------------+<br>
<br>
but that makes no difference to the logic:<br>
<br>
# asterisk -r -x "pjsip show endpoint 30" | grep proxy<br>
 outbound_proxy                     : lr"<br>
-- 8< -----------------------------------------------------<br>
<br>
<br>
<br>
I tried enclosing within < > but with the same problem.<br>
<br>
Is this a bug, or am I doing this wrong?<br></blockquote><div><br></div><div>It's not a bug, it's a result of ";" having special meaning from the database - it means multiple values. You have to encode it and use ^3B instead of ; in the entry. </div></div><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr"><div style="font-family:tahoma,sans-serif"><font color="#073763">Joshua C. Colp</font></div><div style="font-family:tahoma,sans-serif"><font color="#073763">Asterisk Technical Lead</font></div><div style="font-family:tahoma,sans-serif"><font color="#073763">Sangoma Technologies</font></div><div style="font-family:tahoma,sans-serif"><font color="#073763">Check us out at <a href="http://www.sangoma.com" target="_blank">www.sangoma.com</a> and <a href="http://www.asterisk.org" target="_blank">www.asterisk.org</a></font><br></div></div></div></div></div></div></div></div></div></div></div>