diff options
author | corvid <devnull@localhost> | 2016-07-07 14:47:25 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2016-07-07 14:47:25 +0000 |
commit | da86576c107e0692fb3f55dc097f5e14cc4527ff (patch) | |
tree | 83a1dbdf7ab71301e82a6a02bd8bb87c9e86d410 /src/IO/tls.h | |
parent | bd99337e366388866dfae20ecdc2e5ae58011320 (diff) |
a little renaming in tls
The handshake stuff should be named handshake. What should you call
initialize/setup plus handshake, then? I don't know, but 'connect'
for now, anyway.
Diffstat (limited to 'src/IO/tls.h')
-rw-r--r-- | src/IO/tls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/IO/tls.h b/src/IO/tls.h index 9bc89de5..af01202f 100644 --- a/src/IO/tls.h +++ b/src/IO/tls.h @@ -20,7 +20,7 @@ int a_Tls_connect_ready(const DilloUrl *url); void a_Tls_reset_server_state(const DilloUrl *url); /* Use to initiate a TLS connection. */ -void a_Tls_handshake(int fd, const DilloUrl *url); +void a_Tls_connect(int fd, const DilloUrl *url); void *a_Tls_connection(int fd); |