Lots of handle_tcptls_connection threads when no tls configured

Hi guys,

I am using asterisk 14.7.0 on CentOs 7.2 64bit with pjsip udp transport and no chan sip loaded

asterisk-server*CLI> pjsip show transports

Transport: <TransportId…> <BindAddress…>

Transport: transport-udp udp 0 0 192.168.0.4:8060

Objects found: 1

But when I check asterisk threads, I found lots of tcptls connection threads, is that normal?

[root@asterisk-server asterisk-14.7.0]# asterisk -rx ‘core show threads’
0x7f65f39c2700 60901 netconsole started at [ 1661] asterisk.c listener()
0x7f66348df700 40320 netconsole started at [ 1661] asterisk.c listener()
0x7f663495b700 39589 handle_tcptls_connection started at [ 853] tcptls.c ast_tcptls_server_root()
0x7f6634b4b700 39494 handle_tcptls_connection started at [ 853] tcptls.c ast_tcptls_server_root()
0x7f6634bc7700 39493 handle_tcptls_connection started at [ 853] tcptls.c ast_tcptls_server_root()
0x7f6634c43700 39492 handle_tcptls_connection started at [ 853] tcptls.c ast_tcptls_server_root()
0x7f6634cbf700 39491 handle_tcptls_connection started at [ 853] tcptls.c ast_tcptls_server_root()
0x7f6634d3b700 39490 handle_tcptls_connection started at [ 853] tcptls.c ast_tcptls_server_root()
0x7f663666b700 39489 handle_tcptls_connection started at [ 853] tcptls.c ast_tcptls_server_root()

These aren’t connections, these are threads listening for new connections. You might have manager enabled which would use one, or the built-in HTTP server. There are other things that use TCP connections.

thank you, I think it’s ajam :slight_smile: