Skip to content

Commit

Permalink
Display TLS 1.3 support on /Stats page
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcutme committed Aug 12, 2019
1 parent e745760 commit d610f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/Stats/StatsPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def actionStats(self):
yield "Port: %s | " % main.file_server.port
yield "IP Network: %s | " % main.file_server.supported_ip_types
yield "Opened: %s | " % main.file_server.port_opened
yield "Crypt: %s | " % CryptConnection.manager.crypt_supported
yield "Crypt: %s, TLSv1.3: %s | " % (CryptConnection.manager.crypt_supported, CryptConnection.ssl.HAS_TLSv1_3)
yield "In: %.2fMB, Out: %.2fMB | " % (
float(main.file_server.bytes_recv) / 1024 / 1024,
float(main.file_server.bytes_sent) / 1024 / 1024
Expand Down

0 comments on commit d610f94

Please sign in to comment.