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

VxWorks

开发平台:

C/C++

  1. IP_CFG_PARAMS ipCfgParams = /* ip configuration parameters */
  2.     {
  3.     IP_FLAGS_DFLT, /* default ip flags */
  4.     IP_TTL_DFLT, /* ip default time to live */
  5.     IP_QLEN_DFLT, /* default ip intr queue len */
  6.     IP_FRAG_TTL_DFLT /* default ip fragment time to live */
  7.     }; 
  8. STATUS usrIpLibInit ()
  9.     {
  10.     if (ipLibInit (&ipCfgParams) == ERROR)  /* has to included by default */
  11.         {
  12.         printf ("ipLibInit failed.n");
  13.         return (ERROR);
  14.         }
  15.     
  16.     if (rawIpLibInit () == ERROR)           /* has to included by default */
  17.         {
  18.         printf ("rawIpLibInit failed.n");
  19.         return (ERROR);
  20.         }
  21.     
  22.     if (rawLibInit () == ERROR)
  23.         {
  24.         printf ("rawLibInit failed.n");
  25.         return (ERROR);
  26.         }
  27.     return (OK);
  28.     }