aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Add a few testsReiner Herrmann2019-03-09
|
* Use configured dir for allowed file checkReiner Herrmann2019-03-09
|
* Implement Default trait for tftpd ConfigurationReiner Herrmann2019-03-09
|
* Drop unnecessary return value from functionReiner Herrmann2019-03-08
|
* Use a type for the progress callbackReiner Herrmann2019-03-08
|
* Display version number in usage textReiner Herrmann2019-03-08
|
* Use threadpool to handle multiple clients in parallelReiner Herrmann2019-03-08
|
* Display transfer progress in percentageReiner Herrmann2019-03-08
|
* Apply some of the code formatting by rustfmtReiner Herrmann2019-03-07
|
* Clean up as suggested by clippyReiner Herrmann2019-03-07
|
* Parse received errors and other minor error logging improvementsReiner Herrmann2019-03-03
|
* Make requested blksize configurableReiner Herrmann2019-03-03
|
* Implement Transfer Size Option (RFC 2349, part 2)Reiner Herrmann2019-03-03
|
* Implement Option Extension for clientReiner Herrmann2019-03-03
|
* Don't hardcode opcode values everywhereReiner Herrmann2019-03-03
|
* Beautify server usage a bitReiner Herrmann2019-03-02
|
* Move main tftp module into lib to be used as crateReiner Herrmann2019-03-02
| | | | | Otherwise compiler throws warnings about unused symbols, if not every public function is used in every module importing it.
* Implement TFTP clientReiner Herrmann2019-03-02
| | | | no support for TFTP Options yet
* Bind to IPv6 socketReiner Herrmann2019-02-28
| | | | | On Linux this will accept connections for both IPv4 and IPv6, if /proc/sys/net/ipv6/bindv6only is not set (which is the default).
* Implement Timeout Interval Option (RFC 2349, part 1)Reiner Herrmann2019-02-27
|
* Parse mode and options in lowercaseReiner Herrmann2019-02-27
|
* Implement Blocksize Option (RFC 2348)Reiner Herrmann2019-02-27
|
* Move generic TFTP functionality into separate module and server parts into ↵Reiner Herrmann2019-02-27
| | | | struct
* Implement Option Extension (RFC 2347)Reiner Herrmann2019-02-27
| | | | | Parse options at the end of read/write requests and acknowledge the supported ones.
* Parse options at the end of the requestReiner Herrmann2019-02-26
|
* Change directory after dropping privileges, to detect permission problems earlyReiner Herrmann2019-02-26
|
* Add copyright headerReiner Herrmann2019-02-26
|
* Don't overwrite files if they already existReiner Herrmann2019-02-26
|
* Leave retransmit loop directly after successReiner Herrmann2019-02-26
|
* Make operation mode configurableReiner Herrmann2019-02-26
|
* Use same socket for error sending to match TIDs (source ports)Reiner Herrmann2019-02-26
|
* Implement file upload (WRQ)Reiner Herrmann2019-02-26
|
* Allow setting different base directory on command lineReiner Herrmann2019-02-25
|
* Parse command line and make some parameters configurableReiner Herrmann2019-02-24
|
* Add timeout and retransmission of unacked dataReiner Herrmann2019-02-24
|
* Bind to real tftp port (69) and drop privileges immediately afterReiner Herrmann2019-02-24
|
* Allow only files below current working directoryReiner Herrmann2019-02-24
|
* Improved error handlingReiner Herrmann2019-02-24
|
* Initial tftpd implementation with RRQ supportReiner Herrmann2019-02-24
|
* New cargo projectReiner Herrmann2019-02-24