diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-09-11 19:01:53 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-09-11 19:01:53 +0000 |
commit | e2035c018f293db615fb4c46984ea033b9e7f50b (patch) | |
tree | 81803a87e383b510be5682b634758c35e1ee7cde /socket.c | |
parent | 7e3ec8c9d872b906a803c406f4851f30ff98ee5c (diff) | |
download | fetchmail-e2035c018f293db615fb4c46984ea033b9e7f50b.tar.gz fetchmail-e2035c018f293db615fb4c46984ea033b9e7f50b.tar.bz2 fetchmail-e2035c018f293db615fb4c46984ea033b9e7f50b.zip |
Most of the way to SMTP forwarding.
svn path=/trunk/; revision=79
Diffstat (limited to 'socket.c')
-rw-r--r-- | socket.c | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -20,9 +20,7 @@ #include <arpa/inet.h> #include <netdb.h> #include <sys/time.h> -#ifdef SMTP_FORWARD #include <sys/ioctl.h> -#endif /* SMTP_FORWARD */ #if defined(STDC_HEADERS) #include <string.h> #endif @@ -188,7 +186,6 @@ int len; return(len); } -#ifdef SMTP_FORWARD /* SockClearHeader: call this procedure in order to kill off any forthcoming Header info from the socket that we no longer want. */ @@ -246,8 +243,6 @@ int SockDataWaiting(int socket) fcntl(socket,F_SETFL,flags); return res; } -#endif /* SMTP_FORWARD */ - int SockPrintf(socket,format,va_alist) int socket; |