usrSecurity.c
资源名称:ixp425BSP.rar [点击查看]
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:
VxWorks
开发平台:
C/C++
- /* usrSecurity.c - shell login security initialization library library */
- /* Copyright 1984-1998 Wind River Systems, Inc. */
- /*
- modification history
- --------------------
- 01a,03jun98,ms written
- */
- /*
- DESCRIPTION
- Initialize shell login password protection.
- */
- /******************************************************************************
- *
- * usrSecurity - initialize the shell security
- */
- void usrSecurity (void)
- {
- if ((sysFlags & SYSFLG_NO_SECURITY) == 0)
- {
- loginInit (); /* initialize login table */
- shellLoginInstall (loginPrompt, NULL); /* install security program */
- /* add additional users here as required */
- loginUserAdd (LOGIN_USER_NAME, LOGIN_PASSWORD);
- }
- }