usrTcp.c
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* usrTcp.c - Configuration parameters for the TCP library */
  2. /* Copyright 1992 - 1998 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,18aug98,ann  created this configlette from usrNetwork.c
  7. */
  8. /*
  9. DESCRIPTION
  10. This configlette contains the configuration parameters for
  11. the TCP library. It is included by the INCLUDE_TCP component.
  12. NOMANUAL
  13. */
  14. TCP_CFG_PARAMS tcpCfgParams =   /* tcp configuration parameters */
  15.     {
  16.     TCP_FLAGS_DFLT,             /* include rfc1323 support */
  17.     TCP_SND_SIZE_DFLT,          /* default send buffer size */
  18.     TCP_RCV_SIZE_DFLT,          /* default recv buffer size */
  19.     TCP_CON_TIMEO_DFLT,         /* initial connection time out */
  20.     TCP_REXMT_THLD_DFLT,        /* retransmit threshold */
  21.     TCP_MSS_DFLT,               /* default maximum segment size */
  22.     TCP_RND_TRIP_DFLT,          /* default round trip time */
  23.     TCP_IDLE_TIMEO_DFLT,        /* idle timeouts before first probe */
  24.     TCP_MAX_PROBE_DFLT          /* max no. probes before dropping */
  25.     };