diff --git a/modules/proto_tls/doc/proto_tls_admin.xml b/modules/proto_tls/doc/proto_tls_admin.xml index b1f57af3a06..78751826d93 100644 --- a/modules/proto_tls/doc/proto_tls_admin.xml +++ b/modules/proto_tls/doc/proto_tls_admin.xml @@ -509,7 +509,7 @@ param("proto_tls", "tls_send_timeout", 200) # number of milliseconds operations like connect and write. - Default value is 1 (enabled). + Default value is 0 (disabled). Set <varname>tls_async</varname> variable diff --git a/modules/proto_tls/proto_tls.c b/modules/proto_tls/proto_tls.c index ecba0059b0f..7fc656e01f0 100644 --- a/modules/proto_tls/proto_tls.c +++ b/modules/proto_tls/proto_tls.c @@ -89,7 +89,7 @@ struct tls_mgm_binds tls_mgm_api; static int tls_port_no = SIPS_PORT; /* 1 if tls connect & write should be async */ -static int tls_async = 1; +static int tls_async = 0; /* Number of milliseconds that a worker will block waiting for a local * connect - if connect op exceeds this, it will get passed to tls main*/