aboutsummaryrefslogtreecommitdiffstats
path: root/socket.h
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2011-04-29 11:03:54 +0200
committerMatthias Andree <matthias.andree@gmx.de>2011-04-29 15:07:24 +0200
commit48b4421173725c8d2eb9c36342a1a70937c16de0 (patch)
tree9c8d8d9a7412383add5de11c33010820d36cfec4 /socket.h
parent2ef157e08bc4f8796223d179868a562648a5dbdd (diff)
downloadfetchmail-48b4421173725c8d2eb9c36342a1a70937c16de0.tar.gz
fetchmail-48b4421173725c8d2eb9c36342a1a70937c16de0.tar.bz2
fetchmail-48b4421173725c8d2eb9c36342a1a70937c16de0.zip
Remove unused code.
Diffstat (limited to 'socket.h')
-rw-r--r--socket.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/socket.h b/socket.h
index 81b56c06..0c4ac001 100644
--- a/socket.h
+++ b/socket.h
@@ -20,12 +20,6 @@ struct addrinfo;
/** Create a new client socket; returns -1 on error */
int SockOpen(const char *host, const char *service, const char *plugin, struct addrinfo **);
-/** Returns 1 if socket \a fd is OK, 0 if it isn't select()able
- * on - probably because it's been closed. You should
- * always check this function before passing stuff to the
- * select()-based waiter, as otherwise it may loop.
- */
-int SockCheckOpen(int fd);
/**
Get a string terminated by an '\n' (matches interface of fgets).