Interface CryptStatisticsProvider.Counters
- All Known Implementing Classes:
CryptFilter.Counters
- Enclosing interface:
CryptStatisticsProvider
public static interface CryptStatisticsProvider.Counters
A collection of connection statistics.
-
Method Summary
Modifier and TypeMethodDescriptionlongRetrieves the number of cipher blocks written (since the last key exchange).longgetBytes()Retrieves the number of bytes written (since the last key exchange).longRetrieves the number of SSH packets written (since the last key exchange).
-
Method Details
-
getBytes
long getBytes()Retrieves the number of bytes written (since the last key exchange).- Returns:
- the number of bytes
-
getBlocks
long getBlocks()Retrieves the number of cipher blocks written (since the last key exchange).- Returns:
- the number of cipher blocks
-
getPackets
long getPackets()Retrieves the number of SSH packets written (since the last key exchange).- Returns:
- the number of packets
-