diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-05-13 23:42:04 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-05-13 23:42:04 +0000 |
commit | 451d98c467f141e7802b91d26869b6e38ee868fc (patch) | |
tree | 7db5f650940300bb81cd23ab9d41a312ece63e68 /socket.h | |
parent | 2cbdef3efbe733325aea934ed3ffab9e9ba6175e (diff) | |
download | fetchmail-451d98c467f141e7802b91d26869b6e38ee868fc.tar.gz fetchmail-451d98c467f141e7802b91d26869b6e38ee868fc.tar.bz2 fetchmail-451d98c467f141e7802b91d26869b6e38ee868fc.zip |
Change type of socket descriptors from FILE * to int. Change SockGets
to SockRead a la read(2). This is all part of an attempt to deal with
embedded NULs in IMAP messages.
svn path=/trunk/; revision=992
Diffstat (limited to 'socket.h')
-rw-r--r-- | socket.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -8,7 +8,7 @@ #define SOCKET__ /* Create a new client socket; returns (FILE *)NULL on error */ -FILE *SockOpen(char *host, int clientPort); +int SockOpen(char *host, int clientPort); /* Get a string terminated by an '\n' (matches interface of fgets). @@ -16,25 +16,25 @@ Pass it a valid socket, a buffer for the string, and the length of the buffer (including the trailing \0) returns buffer on success, NULL on failure. */ -char *SockGets(char *buf, int len, FILE *sockfp); +int SockRead(int sock, char *buf, int len); /* * Peek at the next socket character without actually reading it. */ -int SockPeek(FILE *sockfp); +int SockPeek(int sock); /* Write a chunk of bytes to the socket (matches interface of fwrite). Returns number of bytes successfully written. */ -int SockWrite(char *buf, int size, int nels, FILE *sockfp); +int SockWrite(int sock, char *buf, int size); /* Send formatted output to the socket (matches interface of fprintf). Returns number of bytes successfully written. */ #if defined(HAVE_STDARG_H) -int SockPrintf(FILE *sockfp, char *format, ...) ; +int SockPrintf(int sock, char *format, ...) ; #else int SockPrintf(); #endif |