about summary refs log tree commit diff
path: root/irc.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-13 01:01:23 -0500
committerJune McEnroe <june@causal.agency>2020-02-13 01:01:23 -0500
commit0a772ff13908dc23ab957f168e0e3ef51ea755f1 (patch)
tree28ebe24d025a923e63235ded19f04e3728b246aa /irc.c
parentAdd sandman wrapper (diff)
downloadcatgirl-0a772ff13908dc23ab957f168e0e3ef51ea755f1.tar.gz
catgirl-0a772ff13908dc23ab957f168e0e3ef51ea755f1.zip
Explicitly close the TLS connection
Just to be nice.
Diffstat (limited to 'irc.c')
-rw-r--r--irc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/irc.c b/irc.c
index 3ecc582..dd36f10 100644
--- a/irc.c
+++ b/irc.c
@@ -273,3 +273,9 @@ void ircRecv(void) {
 	len -= line - buf;
 	memmove(buf, line, len);
 }
+
+void ircClose(void) {
+	int error = tls_close(client);
+	if (error) errx(EX_IOERR, "tls_close: %s", tls_error(client));
+	tls_free(client);
+}