Expand description
TFTP server implementation
This module provides complete TFTP server functionality:
server: Main server logic, handles client requestsworker: Worker threads, handles file transfersconfig: Server configuration
Re-exports§
pub use config::Config;
Modules§
Structs§
- Server
- Server
structis used for handling incoming TFTP requests. - Worker
- Worker
structis used for multithreaded file sending and receiving. It creates a new socket using the Server’s IP and a random port requested from the OS to communicate with the requesting client.
Functions§
- run_
with_ config - Run the TFTP server with CLI arguments and optional configuration