about summary refs log tree commit diff
path: root/Src/Modules/tcp.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Modules/tcp.c')
-rw-r--r--Src/Modules/tcp.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/Src/Modules/tcp.c b/Src/Modules/tcp.c
index 744343d67..44a380170 100644
--- a/Src/Modules/tcp.c
+++ b/Src/Modules/tcp.c
@@ -230,8 +230,8 @@ freehostent(struct hostent *ptr)
 mod_export int
 tcp_socket(int domain, int type, int protocol, Tcp_session sess)
 {
-	sess->fd = socket(domain, type, protocol);
-	return sess->fd;
+    sess->fd = socket(domain, type, protocol);
+    return sess->fd;
 }
 
 static void
@@ -239,6 +239,14 @@ tcp_cleanup(void)
 {
 }
 
+/**/
+mod_export int
+tcp_close(Tcp_session sess)
+{
+    close(sess->fd);
+    sess->fd = -1;
+}
+
 /* The load/unload routines required by the zsh library interface */
 
 /**/