summaryrefslogtreecommitdiffstats
path: root/cpukit/ftpd/ftpd.h
blob: 56bae5a04394ba60a7463835535c6228c656f2fc (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
/*
 *  FTP Server Information
 *
 *  $Id$
 */

#ifndef __FTPD_H__
#define __FTPD_H__


#define FTPD_CONTROL_PORT   21

/*
 * Reply codes.
 */

#define PRELIM          1       /* positive preliminary */
#define COMPLETE        2       /* positive completion */
#define CONTINUE        3       /* positive intermediate */
#define TRANSIENT       4       /* transient negative completion */
#define ERROR           5       /* permanent negative completion */

void rtems_ftpd_sTart(rtems_task_priority priority);

#endif  /* __FTPD_H__ */