diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-07-25 14:20:54 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-07-25 14:20:54 +0000 |
commit | 3673babe2a47d43fce7e4472fe08917e68b88ff6 (patch) | |
tree | f3ad85ad82372c9fca0c27083d680124ad64d523 /socket.h | |
parent | 01abcfe2305f3b7a367acbd394e615e6051e5c6b (diff) | |
download | fetchmail-3673babe2a47d43fce7e4472fe08917e68b88ff6.tar.gz fetchmail-3673babe2a47d43fce7e4472fe08917e68b88ff6.tar.bz2 fetchmail-3673babe2a47d43fce7e4472fe08917e68b88ff6.zip |
SockClose() abstraction.
svn path=/trunk/; revision=2021
Diffstat (limited to 'socket.h')
-rw-r--r-- | socket.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -43,4 +43,10 @@ int SockPrintf(int sock, char *format, ...) ; int SockPrintf(); #endif +/* +Close a socket previously opened by SockOpen. This allows for some +additional clean-up if necessary. +*/ +int SockClose(int sock); + #endif /* SOCKET__ */ |