Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ambrop72/badvpn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authorambrop7 <ambrop7@1a93d707-3861-5ebc-ad3b-9740d49b5140>2011-07-13 21:49:10 +0400
committerambrop7 <ambrop7@1a93d707-3861-5ebc-ad3b-9740d49b5140>2011-07-13 21:49:10 +0400
commitfb7bafc5dca36c70ae43347bd91d1db3f6f5d519 (patch)
treee23f045ff73e5ac9d1a8d92627f38b00d4d4748f /server
parent6c64cdb58821f3e58981787b38e4eae019c5fb87 (diff)
BSSLConnection: we only need BPendingGroup, not BReactor
Diffstat (limited to 'server')
-rw-r--r--server/server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/server.c b/server/server.c
index 88a4122..287819f 100644
--- a/server/server.c
+++ b/server/server.c
@@ -862,7 +862,7 @@ void listener_handler (BListener *listener)
}
// init SSL connection
- BSSLConnection_Init(&client->sslcon, client->ssl_prfd, 1, &ss, client, (BSSLConnection_handler)client_sslcon_handler);
+ BSSLConnection_Init(&client->sslcon, client->ssl_prfd, 1, BReactor_PendingGroup(&ss), client, (BSSLConnection_handler)client_sslcon_handler);
} else {
// initialize I/O
if (!client_init_io(client)) {