diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2011-04-29 11:03:54 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2011-04-29 15:07:24 +0200 |
commit | 48b4421173725c8d2eb9c36342a1a70937c16de0 (patch) | |
tree | 9c8d8d9a7412383add5de11c33010820d36cfec4 /socket.h | |
parent | 2ef157e08bc4f8796223d179868a562648a5dbdd (diff) | |
download | fetchmail-48b4421173725c8d2eb9c36342a1a70937c16de0.tar.gz fetchmail-48b4421173725c8d2eb9c36342a1a70937c16de0.tar.bz2 fetchmail-48b4421173725c8d2eb9c36342a1a70937c16de0.zip |
Remove unused code.
Diffstat (limited to 'socket.h')
-rw-r--r-- | socket.h | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -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). |