diff options
Diffstat (limited to 'net/tftp.h')
-rw-r--r-- | net/tftp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tftp.h b/net/tftp.h index 2b686e3ca6a..c411c9b2e65 100644 --- a/net/tftp.h +++ b/net/tftp.h @@ -16,14 +16,14 @@ */ /* tftp.c */ -void TftpStart(enum proto_t protocol); /* Begin TFTP get/put */ +void tftp_start(enum proto_t protocol); /* Begin TFTP get/put */ #ifdef CONFIG_CMD_TFTPSRV -extern void TftpStartServer(void); /* Wait for incoming TFTP put */ +void tftp_start_server(void); /* Wait for incoming TFTP put */ #endif -extern ulong TftpRRQTimeoutMSecs; -extern int TftpRRQTimeoutCountMax; +extern ulong tftp_timeout_ms; +extern int tftp_timeout_count_max; /**********************************************************************/ |