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

VxWorks

开发平台:

C/C++

  1. /* usrSecurity.c - shell login security initialization library library */
  2. /* Copyright 1984-1998 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01a,03jun98,ms   written
  7. */
  8. /*
  9. DESCRIPTION
  10. Initialize shell login password protection.
  11. */
  12. /******************************************************************************
  13. *
  14. * usrSecurity - initialize the shell security
  15. */
  16. void usrSecurity (void)
  17.     {
  18.     if ((sysFlags & SYSFLG_NO_SECURITY) == 0)
  19.         {
  20.         loginInit ();                           /* initialize login table */
  21.         shellLoginInstall (loginPrompt, NULL);  /* install security program */
  22.         /* add additional users here as required */
  23.         loginUserAdd (LOGIN_USER_NAME, LOGIN_PASSWORD);
  24.         }
  25.     }