diff options
author | Simon Glass <sjg@chromium.org> | 2011-10-24 18:00:05 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-10-26 21:34:44 +0200 |
commit | 58f317d1823c34b41990f21931d143a6606f5507 (patch) | |
tree | 62ec42cc1c56ab96622a8487708fb2e16e0e4eb8 /net | |
parent | e4cde2f70d2377fdf484cbbc1729b188f81b8ec8 (diff) |
net: tftpput: Support selecting get/put for tftp
TftpStart should support starting either a get or a put.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/bootp.c | 2 | ||||
-rw-r--r-- | net/tftp.c | 3 | ||||
-rw-r--r-- | net/tftp.h | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/net/bootp.c b/net/bootp.c index 73470f2d46f..b703f428ca4 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -165,7 +165,7 @@ static void auto_load(void) } #endif } - TftpStart(); + TftpStart(TFTPGET); } #if !defined(CONFIG_CMD_DHCP) diff --git a/net/tftp.c b/net/tftp.c index 6d46bbbe7c7..7e3bb3dc24a 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -595,8 +595,7 @@ TftpTimeout(void) } -void -TftpStart(void) +void TftpStart(enum proto_t protocol) { char *ep; /* Environment pointer */ diff --git a/net/tftp.h b/net/tftp.h index 3abdf7bc267..c51aa253c47 100644 --- a/net/tftp.h +++ b/net/tftp.h @@ -16,7 +16,7 @@ */ /* tftp.c */ -extern void TftpStart (void); /* Begin TFTP get */ +void TftpStart(enum proto_t protocol); /* Begin TFTP get/put */ #ifdef CONFIG_CMD_TFTPSRV extern void TftpStartServer(void); /* Wait for incoming TFTP put */ |