more ssl -> tls wording

This commit is contained in:
Joris Vink 2017-02-11 21:30:38 +01:00
parent 9be3c22196
commit 98f0c41f38
2 changed files with 4 additions and 4 deletions

View File

@ -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 *);

View File

@ -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;