I had a previous question regarding default transport, and the response I got was that the RFC says the order should be UDP, TCP then TLS.  However after reading into this further (and some recent experiences with other platforms) I&#39;m wondering if I have a new feature request for OpenSIPS.  >From the RFC 3263 - Section 4.1 Selecting a Transport Protocol, I read it as saying:<br>
<br>1.  If specified in the RURI it SHOULD use this (but doesn&#39;t have to)<br>2.  Bunch of stuff on NAPTR (which we are not doing)<br>3.  The section related to what we are doing:<br><br>   -----clip-----<br>If no NAPTR records are found, the client constructs SRV queries for<br>
   those transport protocols it supports, and does a query for each.<br>   Queries are done using the service identifier &quot;_sip&quot; for SIP URIs and<br>   &quot;_sips&quot; for SIPS URIs.  A particular transport is supported if the<br>
   query is successful.  The client MAY use any transport protocol it<br>   desires which is supported by the server.<br><br>      This is a change from RFC 2543.  It specified that a client would<br>      lookup SRV records for all transports it supported, and merge the<br>
      priority values across those records.  Then, it would choose the<br>      most preferred record.<br><br>   If no SRV records are found, the client SHOULD use TCP for a SIPS<br>   URI, and UDP for a SIP URI.  However, another transport protocol,<br>
   such as TCP, MAY be used if the guidelines of SIP mandate it for this<br>   particular request.  That is the case, for example, for requests that<br>   exceed the path MTU.<br>-----clip-----<br>
<br>The way I read this is that OpenSIPS MAY select whatever transport it likes, and if no DNS SRV is found, then it would default to using UDP first for SIP.  But in our set, DNS SRV does exist, and there are both TCP and UDP records.  We would like to decide the default transport order to use, starting with TLS then TCP then UDP.  I think I can try to write something in the script to do this, but I&#39;m not sure yet.  I don&#39;t want to rewrite the RURI, I just want to specify the transport.  It would be great if there was a global variable defined in the config that was something like &quot;transport_order=TLS,TCP,UDP&quot;<br>
<br>Thoughts?<br><br>-dg<br>