commit 98f0c41f385b72f1c0f9607b8a233c98dd167a0c
parent 9be3c22196ecc64dc5d07559b6c9920bbdc5fd37
Author: Joris Vink <joris@coders.se>
Date: Sat, 11 Feb 2017 21:30:38 +0100
more ssl -> tls wording
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/includes/kore.h b/includes/kore.h
@@ -665,9 +665,9 @@ int net_send(struct connection *);
int net_send_flush(struct connection *);
int net_recv_flush(struct connection *);
int net_read(struct connection *, int *);
-int net_read_ssl(struct connection *, int *);
+int net_read_tls(struct connection *, int *);
int net_write(struct connection *, int, int *);
-int net_write_ssl(struct connection *, int, int *);
+int net_write_tls(struct connection *, int, int *);
void net_recv_reset(struct connection *, size_t,
int (*cb)(struct netbuf *));
void net_remove_netbuf(struct netbuf_head *, struct netbuf *);
diff --git a/src/net.c b/src/net.c
@@ -277,7 +277,7 @@ net_remove_netbuf(struct netbuf_head *list, struct netbuf *nb)
#if !defined(KORE_NO_TLS)
int
-net_write_ssl(struct connection *c, int len, int *written)
+net_write_tls(struct connection *c, int len, int *written)
{
int r;
@@ -318,7 +318,7 @@ net_write_ssl(struct connection *c, int len, int *written)
}
int
-net_read_ssl(struct connection *c, int *bytes)
+net_read_tls(struct connection *c, int *bytes)
{
int r;