commit 3119f93cd1ea2f9e82223c6b4cd92453c839445d
parent 04c4f88ca0f60f83adb35a32c820cc326cd7222b
Author: Shichao <mrrr61@outlook.com>
Date: Sat, 27 Jul 2024 17:25:42 +0800
http3: Gracefully delete closed connections.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/src/service/transport/gnunet-communicator-http3.c b/src/service/transport/gnunet-communicator-http3.c
@@ -2613,6 +2613,7 @@ get_connection_delete_it (void *cls,
struct Connection *connection = value;
(void) cls;
(void) key;
+ handle_error (connection);
connection_destroy (connection);
return GNUNET_OK;
}