source: rtems/cpukit/telnetd/telnetd.h @ f26145b

4.104.114.84.95
Last change on this file since f26145b was 73b5bd5d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/15/04 at 13:33:58

Remove stray white spaces.

  • Property mode set to 100644
File size: 774 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
Note: See TracBrowser for help on using the repository browser.