Change TLS protocol and scheme to "sip;tls" instead of "sips;tcp"

This commit is contained in:
Doubango Telecom 2017-07-13 23:48:13 +02:00
parent ee90f5044e
commit b291037c2b
1 changed files with 2 additions and 2 deletions

View File

@ -928,8 +928,8 @@ int tsip_transport_init(tsip_transport_t* self, tnet_socket_type_t type, const s
if(TNET_SOCKET_TYPE_IS_STREAM(type)) {
if(TNET_SOCKET_TYPE_IS_TLS(type)) {
self->scheme = "sips";
self->protocol = "tcp";
self->scheme = "sip";
self->protocol = "tls";
self->via_protocol = "TLS";
self->service = "SIPS+D2T";
}