summaryrefslogtreecommitdiffstats
path: root/cpukit/telnetd/telnetd.h
blob: 1bb99ebc1b1cbe58f7208c291c4cfb48ccff13bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * (A first version for telnetd)
 *
 *  Author: Fernando RUIZ CASAS (fernando.ruiz@ctv.es)
 *  May 2001
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 *
 *  rtems_initialize_telnetd() starts the daemon.
 *  main_telnetd() is the main_proc for the command telnetd in the shell
 *  register_telnetd() add a new command in the shell to start
 *  interactively the telnetd daemon.
 * 
 *  $Id$
 */

#ifndef __TELNETD_H
#define __TELNETD_H

#ifdef __cplusplus
extern "C" {
#endif	

int rtems_initialize_telnetd(void);
int main_telnetd(int argc,char * argv[]);
int register_telnetd(void);
 
#ifdef __cplusplus
}
#endif	

#endif