Changeset 38371dbe in rtems for cpukit/ftpd/ftpd.h
- Timestamp:
- Jan 24, 2001, 7:20:24 PM (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4a80bf2b
- Parents:
- e8a7a46
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ftpd/ftpd.h
re8a7a46 r38371dbe 10 10 11 11 #define FTPD_CONTROL_PORT 21 12 13 /* FTPD access control flags */ 14 enum 15 { 16 FTPD_NO_WRITE = 0x1, 17 FTPD_NO_READ = 0x2, 18 FTPD_NO_RW = FTPD_NO_WRITE | FTPD_NO_READ 19 }; 12 20 13 21 typedef int (*rtems_ftpd_hookfunction)(unsigned char *, unsigned long); … … 28 36 char const *root; /* Root for FTPD or 0 for / */ 29 37 int tasks_count; /* Max. connections */ 38 int idle; /* Idle timeout in seoconds 39 or 0 for no (inf) timeout */ 40 int access; /* 0 - r/w, 1 - read-only, 41 2 - write-only, 42 3 - browse-only */ 30 43 }; 31 44
Note: See TracChangeset
for help on using the changeset viewer.