tcp.h
上传用户:adsacym
上传日期:2007-01-07
资源大小:67k
文件大小:1k
源码类别:

Internet/IE编程

开发平台:

Visual C++

  1. #define WM_TCP WM_APP+100
  2. //extern int sd_connect, sd_bind, sd_accept;
  3. int tcp_init();
  4. int tcp_exit();
  5. int tcp_status(int  sd, char *type, int timeout);
  6. int tcp_bind(HWND hWnd, int port);
  7. int tcp_accept(int sd, int timeout);
  8. int tcp_connect(char *hostname, int port, int timeout, int f_noblock);
  9. void tcp_disconnect(int sd);
  10. void tcp_close(int sd);
  11. int tcp_send(int sd, char *buf, int len, int timeout);
  12. int tcp_recv(int sd, char *buf, int len, int timeout);
  13. int tcp_gethostnamebyip(char *ip, char *name);
  14. unsigned short tcp_htons(unsigned short);
  15. unsigned short tcp_ntohs(unsigned short);
  16. unsigned long int tcp_htonl(unsigned long int);
  17. unsigned long int tcp_ntohl(unsigned long int);
  18. float tcp_htonf(float f);
  19. float tcp_ntohf(float f);
  20. double tcp_htond(double d);
  21. double tcp_ntohd(double d);
  22. char *get_remote_ip(int sd, char *ip);