You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we try to create a new request we use following
Original URI = "sip:bob@192.168.1.59:45831;rinstance=54d13cbf8a4c07df;transport=UDP"
When we try to create a new request with above uri its pramater order changed and appears as follow
"sip:bob@192.168.1.59:45831;transport=UDP;rinstance=54d13cbf8a4c07df"
This is because when ruri is parsed a predefined record is used and there transport param precedes to other params
When we try to create a new request we use following
Original URI = "sip:bob@192.168.1.59:45831;rinstance=54d13cbf8a4c07df;transport=UDP"
When we try to create a new request with above uri its pramater order changed and appears as follow
"sip:bob@192.168.1.59:45831;transport=UDP;rinstance=54d13cbf8a4c07df"
This is because when ruri is parsed a predefined record is used and there transport param precedes to other params
:ersip_uri.parse( "sip:bob@192.168.1.59:45831;rinstance=54d13cbf8a4c07df;transport=UDP")
{:ok,
{:uri, :sip,
{:sip_uri, false, {:user, "bob"}, {:ipv4, {192, 168, 1, 59}}, "192.168.1.59",
45831,
%{:transport => {:transport, :udp}, "rinstance" => "54d13cbf8a4c07df"},
%{}}}}
Is it possible to parse uri in the same order as the original uri?
The text was updated successfully, but these errors were encountered: