2.2.21 FTP_STATISTICS_0

The FTP_STATISTICS_0 structure contains statistics on the usage of the FTP server.

This type is declared as follows:

 typedef struct _FTP_STATISTICS_0 {
   LARGE_INTEGER TotalBytesSent;
   LARGE_INTEGER TotalBytesReceived;
   DWORD TotalFilesSent;
   DWORD TotalFilesReceived;
   DWORD CurrentAnonymousUsers;
   DWORD CurrentNonAnonymousUsers;
   DWORD TotalAnonymousUsers;
   DWORD TotalNonAnonymousUsers;
   DWORD MaxAnonymousUsers;
   DWORD MaxNonAnonymousUsers;
   DWORD CurrentConnections;
   DWORD MaxConnections;
   DWORD ConnectionAttempts;
   DWORD LogonAttempts;
   DWORD ServiceUptime;
   DWORD TotalAllowedRequests;
   DWORD TotalRejectedRequests;
   DWORD TotalBlockedRequests;
   DWORD CurrentBlockedRequests;
   DWORD MeasuredBandwidth;
   DWORD TimeOfLastClear;
 } FTP_STATISTICS_0,
  *LPFTP_STATISTICS_0;

TotalBytesSent: The total number of bytes sent.

TotalBytesReceived: The total number of bytes received.

TotalFilesSent: The total number of files sent by the FTP server.

TotalFilesReceived: The total number of files received by the FTP server.

CurrentAnonymousUsers: The current number of anonymous users connected to the FTP server.

CurrentNonAnonymousUsers: The current number of non-anonymous users connected to the FTP server.

TotalAnonymousUsers: The total number of anonymous users that have ever connected to the FTP server.

TotalNonAnonymousUsers: The total number of non-anonymous users that have ever connected to the FTP server.

MaxAnonymousUsers: The maximum number of anonymous users allowed to simultaneously connect to the FTP server.

MaxNonAnonymousUsers: The maximum number of non-anonymous users allowed to simultaneously connect to the FTP server.

CurrentConnections: The current number of connections to the FTP server.

MaxConnections: The maximum number of connections to the FTP server.

ConnectionAttempts: The number of connection attempts that have been made to the FTP server.

LogonAttempts: The number of logon attempts that have been made to the FTP server.

ServiceUptime: The time that the FTP server has been operational.

TotalAllowedRequests: The total number of requests allowed to the FTP server.

TotalRejectedRequests: The total number of rejected requests.

TotalBlockedRequests: The total number of blocked requests.

CurrentBlockedRequests: The current number of blocked requests.

MeasuredBandwidth: The measured network bandwidth for the FTP server.

TimeOfLastClear: The time of the last clear.