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

Ftp客户端

开发平台:

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);
  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);