main.h
上传用户:yyhongfa
上传日期:2013-01-18
资源大小:267k
文件大小:1k
开发平台:

C/C++

  1. /*****************************************
  2.   created by zhouzhigang 2005.06.19
  3.   ****************************************/
  4. #ifndef MAIN_H
  5. #define MAIN_H
  6. #ifndef PPP_MAXMRU 
  7.    #define PPP_MAXMRU 1500
  8. #endif
  9. #define MAX_SYS_ERR_ALLOW  3
  10. #define TCPIP_KEEPALIVE 1
  11. #define MAX_KEEPALIVE_ERR_ALLOW 3
  12. /*
  13. *We check the state of socket every 10 minutes
  14. */
  15. #define MAX_KEEPALIVE_PERIOD   600000   
  16. /*
  17. *the max time that we could wait for the packet
  18. *return from server is 60 seconds
  19. */
  20. #define MAX_SERVER_WATI_TIME 60000
  21. /*define which connecting is default*/
  22. typedef enum
  23. {
  24.     TCP_CONNECT_DEFAULT=  0,
  25.     UDP_CONNECT_DEFAULT   = 1,
  26.     STATE_UNKNOWN
  27. }CONNECT_TYPE;
  28. #endif
  29.