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

VxWorks

开发平台:

C/C++

  1. /* routeSockCfg.c - initialize the socket library */
  2. /* Copyright 1992 - 1998 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01c,14nov00,rae  removed unused argument from sockLibAdd()
  7. 01b,30jul99,pul  modify sockLibAdd to add extra parameter for future
  8.                  scalability
  9. 01a,18aug98,ann  created this configlette from usrNetwork.c
  10. */
  11. /*
  12. DESCRIPTION
  13. This configlette contains the initialization routine for the 
  14. INCLUDE_ROUTE_SOCK component. It is responsible for calling the routine 
  15. to initialize the routing sockets.
  16. NOMANUAL
  17. */
  18. STATUS routeSockInit()
  19.     {
  20.     if (sockLibAdd ((FUNCPTR) bsdSockLibInit, AF_ROUTE, AF_ROUTE) == ERROR)
  21.         return (ERROR);
  22.     routeSockLibInit () ;
  23.     return (OK);
  24.     }