Callisto82 / tftp.net

Implements the TFTP (Trivial File Transfer) protocol (client/server) in an easy-to-use C#/.NET library.
Microsoft Public License
81 stars 38 forks source link

Small Bug Fix in TftpTransferProgress #19

Closed pyrostew closed 5 years ago

pyrostew commented 5 years ago

Fixed a small bug where when transferring large files the ToString() method can return incorrect % complete values. This is because the TransferredBytes was being multiplied by an int with the result being a int, marking the multiplier as a long solved the issue.

Callisto82 commented 5 years ago

Thanks for your contribution!