From ec34228e0f24531c994ddb5368243a6bf14ffa86 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 30 Nov 2024 18:24:50 +0200 Subject: [PATCH] update comment --- src/client.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/client.rs b/src/client.rs index 942fb17..ef81c2f 100644 --- a/src/client.rs +++ b/src/client.rs @@ -74,11 +74,11 @@ impl Client { /// High-level method make new async request to given [Uri](https://docs.gtk.org/glib/struct.Uri.html), /// callback with new `Response`on success or `Error` on failure /// - /// * method does not close new `Connection` created, hold it in `Session`, - /// expects from user manual `Response` handle with close act on complete - /// * if new request match same `uri`, method auto-close previous connection, renew `Session` - /// * method ignores default session resumption provided by Glib TLS backend, - /// implement certificate change ability in application runtime + /// * method does not close new `Connection` by default, hold it in `Session`, + /// expect from user manual `Response` handle with close act on complete + /// * ignore default session resumption provided by Glib TLS backend, + /// instead of that, applies new `certificate` to sessions match `uri` scope + /// * implement certificate change ability in application runtime pub fn request_async( &self, uri: Uri,