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

VxWorks

开发平台:

C/C++

  1. /* usrNetTelnetdCfg.c - Initialization routine for the Telnet server */
  2. /* Copyright 1992 - 2002 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,30apr02,elr  changed order of initialization
  7. 01a,14feb01,spm  inherited from version 01a of tor2_0_x branch
  8. */
  9. /*
  10. DESCRIPTION
  11. This configlette contains the initialization routine for the 
  12. INCLUDE_TELNET component.
  13. NOMANUAL
  14. */
  15. void usrTelnetdStart (void)
  16.     {
  17.      /* Configure telnet server to use a shell as a command interpreter. */
  18.     if (telnetdParserSet (TELNETD_PARSER_HOOK) == ERROR)
  19.         printf ("Error %x: unable to add command interpreter to telnet server.n", errno);
  20.     else 
  21.     if (telnetdInit (TELNETD_MAX_CLIENTS, TELNETD_TASKFLAG) == ERROR)
  22.         printf ("Error %x: unable to initialize telnet server.n", errno);
  23.     else if (telnetdStart (TELNETD_PORT) == ERROR)
  24.         printf ("Error %x: unable to start telnet server.n", errno);
  25.     }