aboutsummaryrefslogtreecommitdiffstats
path: root/rpa.c
Commit message (Expand)AuthorAgeFilesLines
* License cleanups.Eric S. Raymond2001-09-301-0/+3
* _( -> GT_(Eric S. Raymond2001-09-261-41/+41
* Label save closes.Eric S. Raymond2000-01-311-1/+1
* Simplify error reporting further.Eric S. Raymond1999-02-031-55/+55
* Return of the dancing progress dots.Eric S. Raymond1999-02-011-17/+19
* Progress messages now go to stdout.Eric S. Raymond1999-01-051-64/+64
* First step towards splitting error from progress messages.Eric S. Raymond1999-01-051-48/+48
* Fix copyrights.Eric S. Raymond1998-12-041-3/+0
* Internationalization support via GNU gettext().Eric S. Raymond1998-11-261-41/+44
* More verbosity fixes.Eric S. Raymond1998-10-171-354/+354
* Introduced O_DEBUG.Eric S. Raymond1998-10-171-19/+19
* Make RPA less verbose.Eric S. Raymond1998-06-041-10/+22
* RPA fixes.Eric S. Raymond1998-06-031-26/+33
* Make RPA logging use error() rather than stderr.Eric S. Raymond1998-05-121-64/+67
* Fix -Wall warnings.Eric S. Raymond1998-03-171-0/+1
* Nailed.Eric S. Raymond1998-03-131-31/+31
* Enable conditioning out of POP3, IMAP, ETRN.Eric S. Raymond1997-10-041-2/+2
* Integrated RPA support.Eric S. Raymond1997-09-301-2/+6
* The code as I received it from Michael Palmer.Eric S. Raymond1997-09-301-0/+882
* Initial revisionEric S. Raymond1997-09-301-0/+0
ss="o">*service, const char *options); #else /* INET6 */ int SockOpen(const char *host, int clientPort, const char *options); #endif /* INET6 */ /* Get a string terminated by an '\n' (matches interface of fgets). 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. */ int SockRead(int sock, char *buf, int len); /* * Peek at the next socket character without actually reading it. */ int SockPeek(int sock); /* Write a chunk of bytes to the socket (matches interface of fwrite). Returns number of bytes successfully written. */ 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(int sock, char *format, ...) ; #else int SockPrintf(); #endif #endif /* SOCKET__ */