summaryrefslogtreecommitdiffstats
path: root/cpukit/telnetd/telnetd.h
blob: afebd20a16a835522cdb6c15df12322ecfe89ce8 (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
36
37
38
39
40
41
42
43
44
45
46
/*
 *  Original Author: Fernando RUIZ CASAS (fernando.ruiz@ctv.es)
 *  May 2001
 *  Reworked by Till Straumann and .h overhauled by Joel Sherrill.
 *
 *  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.
 *
 *  $Id$
 */

#ifndef _RTEMS_TELNETD_H
#define _RTEMS_TELNETD_H

#ifdef __cplusplus
extern "C" {
#endif	

/*
 *  Initialize the telnetd subsystem.
 *
 *  cmd              - function which is the "shell" telnetd invokes
 *  arg              - context pointer to cmd
 *  dontSpawn        - TRUE if telnetd takes over this task.
 *                     FALSE to create another task for the shell.
 *  stack            - stack size of spawned task 
 *  priority         - initial priority of spawned task
 *  askForPassword   - TRUE if telnetd asks for password
 *                     FALSE to invoke "cmd" with no password check.
 *                        This may be OK if "cmd" includes its own check.
 */
int rtems_telnetd_initialize(
  void               (*cmd)(char *, void *),
  void                *arg,
  int                  dontSpawn,
  size_t               stack,
  rtems_task_priority  priority,
  int                  askForPassword
);

#ifdef __cplusplus
}
#endif	

#endif