Changeset 82702 in vbox for trunk/include/iprt
- Timestamp:
- Jan 9, 2020 4:18:28 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 135624
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/ftp.h
r82699 r82702 108 108 /** Service ready for new user. */ 109 109 RTFTPSERVER_REPLY_READY_FOR_NEW_USER = 220, 110 /** Service is closing control connection. */ 111 RTFTPSERVER_REPLY_CLOSING_CTRL_CONN = 221, 110 112 /** Closing data connection. */ 111 113 RTFTPSERVER_REPLY_CLOSING_DATA_CONN = 226, … … 137 139 typedef struct RTFTPSERVERCLIENTSTATE 138 140 { 141 /** User name. */ 142 char *pszUser; 143 /** Number of failed login attempts. */ 144 uint8_t cFailedLoginAttempts; 139 145 /** Timestamp (in ms) of last command issued by the client. */ 140 146 uint64_t tsLastCmdMs;
Note:
See TracChangeset
for help on using the changeset viewer.