socket.h
上传用户:xxcykj
上传日期:2007-01-04
资源大小:727k
文件大小:2k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /*
  2.  * socket.h -- declarations for socket library functions
  3.  *
  4.  * For license terms, see the file COPYING in this directory.
  5.  */
  6. #ifndef SOCKET__
  7. #define SOCKET__
  8. /* Create a new client socket; returns (FILE *)NULL on error */
  9. #if INET6_ENABLE
  10. int SockOpen(const char *host, const char *service, const char *options,
  11.      const char *plugin);
  12. #else /* INET6_ENABLE */
  13. int SockOpen(const char *host, int clientPort, const char *options,
  14.      const char *plugin);
  15. #endif /* INET6_ENABLE */
  16. /* Returns 1 if this socket is OK, 0 if it isn't select()able
  17.  * on - probably because it's been closed. You should
  18.  * always check this function before passing stuff to the
  19.  * select()-based waiter, as otherwise it may loop. 
  20.  */
  21. int SockCheckOpen(int fd);
  22. /* 
  23. Get a string terminated by an 'n' (matches interface of fgets).
  24. Pass it a valid socket, a buffer for the string, and
  25. the length of the buffer (including the trailing )
  26. returns length of buffer on success, -1 on failure. 
  27. */
  28. int SockRead(int sock, char *buf, int len);
  29. /*
  30.  * Peek at the next socket character without actually reading it.
  31.  */
  32. int SockPeek(int sock);
  33. /*
  34. Write a chunk of bytes to the socket (matches interface of fwrite).
  35. Returns number of bytes successfully written.
  36. */
  37. int SockWrite(int sock, char *buf, int size);
  38. /* 
  39. Send formatted output to the socket (matches interface of fprintf).
  40. Returns number of bytes successfully written.
  41. */
  42. #if defined(HAVE_STDARG_H)
  43. int SockPrintf(int sock, const char *format, ...) ;
  44. #else
  45. int SockPrintf();
  46. #endif
  47.  
  48. /*
  49. Close a socket previously opened by SockOpen.  This allows for some
  50. additional clean-up if necessary.
  51. */
  52. int SockClose(int sock);
  53. #endif /* SOCKET__ */