aboutsummaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-08-27 04:18:23 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-08-27 04:18:23 +0000
commit55e58fd8e85bc6efd40716df0d721e209e2f7573 (patch)
tree1c6cd231ec9778d9b19bf5fc46f94f848c4bf616 /socket.c
parent560361d4982ab966d4c391c0b47025993db3f9f4 (diff)
downloadfetchmail-55e58fd8e85bc6efd40716df0d721e209e2f7573.tar.gz
fetchmail-55e58fd8e85bc6efd40716df0d721e209e2f7573.tar.bz2
fetchmail-55e58fd8e85bc6efd40716df0d721e209e2f7573.zip
Condition out the SMTP-forwarding support.
svn path=/trunk/; revision=68
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c68
1 files changed, 66 insertions, 2 deletions
diff --git a/socket.c b/socket.c
index e7d40904..664415f2 100644
--- a/socket.c
+++ b/socket.c
@@ -20,6 +20,9 @@
#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
@@ -28,7 +31,7 @@
#endif
#include <stdlib.h>
#include <varargs.h>
-
+#include <errno.h>
#include "bzero.h"
#include "socket.h"
@@ -140,12 +143,13 @@ int len;
return 0;
}
+static int sbuflen = 0;
+
int SockInternalRead (socket,buf,len)
int socket;
char *buf;
int len;
{
- static int sbuflen = 0;
static char sbuf [INTERNAL_BUFSIZE];
static char *bp;
@@ -184,6 +188,66 @@ 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.
+ */
+int SockClearHeader(socket)
+int socket;
+{
+ char *bufp;
+ static char sbuf[INTERNAL_BUFSIZE];
+ int nBytes;
+ int res;
+
+ if ((res = SockDataWaiting(socket)) <= 0)
+ return res;
+
+ while (1)
+ {
+ if (SockGets(socket,sbuf,INTERNAL_BUFSIZE) < 0)
+ return 0;
+ bufp = sbuf;
+ if (*bufp == '.') {
+ bufp++;
+ if (*bufp == 0)
+ break;
+ }
+ }
+ sbuflen = 0;
+ return 0;
+}
+
+
+/* SockDataWaiting: Return a non-zero value if this socket is waiting
+ for data. */
+int SockDataWaiting(int socket)
+{
+ int flags;
+ char sbuf[INTERNAL_BUFSIZE];
+ int n;
+ int res;
+ flags = fcntl(socket,F_GETFL,0);
+
+ /* set it to non-block */
+ if (fcntl(socket,F_SETFL,flags | O_NONBLOCK) == -1)
+ return -1;
+
+ if ((n = recv(socket,sbuf,INTERNAL_BUFSIZE,MSG_PEEK)) == -1)
+ {
+ /* No data to read. */
+ if (errno == EWOULDBLOCK)
+ res = 0;
+ }
+ else
+ res = n;
+
+ /* reset it to block (or, whatever it was). */
+ fcntl(socket,F_SETFL,flags);
+ return res;
+}
+#endif /* SMTP_FORWARD */
+
int SockPrintf(socket,format,va_alist)
int socket;