source: rtems/cpukit/telnetd/telnetd.h @ 7ed1e747

4.104.114.84.95
Last change on this file since 7ed1e747 was bd520203, checked in by Joel Sherrill <joel.sherrill@…>, on 08/09/01 at 22:06:51

2001-08-09 Fernando-Ruiz Casas <correo@…>

  • Makefile.am, configure.in, rtems_servers/Makefile.am, rtems_servers/telnetd.c, rtems_servers/telnetd.h, rtems_telnetd/Makefile.am, rtems_telnetd/README, rtems_telnetd/icmds.c, rtems_telnetd/pty.c, rtems_telnetd/pty.h, rtems_telnetd/telnetd.c, rtems_telnetd/telnetd.h, wrapup/Makefile.am:
    • pty and telnetd have a new subdir rtems_telnetd to avoid the side effect when ftpd change.
    • the tcp/ip stats have been implemented into icmds.c and started when telnetd daemon is started.
  • rtems_servers/telnetd.c, rtems_servers/telnetd.h: Removed.
  • rtems_telnetd: New directory.
  • rtems_telnetd/Makefile.am, rtems_telnetd/README, rtems_telnetd/icmds.c, rtems_telnetd/pty.c, rtems_telnetd/pty.h, rtems_telnetd/telnetd.c, rtems_telnetd/telnetd.h: New files.
  • Property mode set to 100644
File size: 775 bytes
Line 
1/*
2 * (A first version for telnetd)
3 *
4 *  Author: Fernando RUIZ CASAS (fernando.ruiz@ctv.es)
5 *  May 2001
6 *
7 *  This program is distributed in the hope that it will be useful,
8 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
9 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 *
11 *  rtems_initialize_telnetd() starts the daemon.
12 *  main_telnetd() is the main_proc for the command telnetd in the shell
13 *  register_telnetd() add a new command in the shell to start
14 *  interactively the telnetd daemon.
15 *
16 *  $Id$
17 */
18
19#ifndef __TELNETD_H
20#define __TELNETD_H
21
22#ifdef __cplusplus
23extern "C" {
24#endif 
25
26int rtems_initialize_telnetd(void);
27int main_telnetd(int argc,char * argv[]);
28int register_telnetd(void);
29 
30#ifdef __cplusplus
31}
32#endif 
33
34#endif
35
Note: See TracBrowser for help on using the repository browser.