Function tokio_tungstenite::connect_async_tls_with_config
source · pub async fn connect_async_tls_with_config<R>(
request: R,
config: Option<WebSocketConfig>,
disable_nagle: bool,
connector: Option<Connector>,
) -> Result<(WebSocketStream<MaybeTlsStream<TcpStream>>, Response), Error>where
R: IntoClientRequest + Unpin,
Expand description
The same as connect_async()
but the one can specify a websocket configuration,
and a TLS connector to use. Please refer to connect_async()
for more details.
disable_nagle
specifies if the Nagle’s algorithm must be disabled, i.e.
set_nodelay(true)
. If you don’t know what the Nagle’s algorithm is, better
leave it to false
.