diff options
| author | Luca Ceresoli <luca.ceresoli@comelit.it> | 2011-05-17 00:03:40 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-05-19 21:38:32 +0200 | 
| commit | 7a83af07aef3c924cfb2d36e68eea8b86d22f2a1 (patch) | |
| tree | 695b7755a149f98ace4097f4a48762f258614d35 /include/net.h | |
| parent | e59e35620af0d57de75cddb9ec3f19449b998868 (diff) | |
| download | olio-uboot-2014.01-7a83af07aef3c924cfb2d36e68eea8b86d22f2a1.tar.xz olio-uboot-2014.01-7a83af07aef3c924cfb2d36e68eea8b86d22f2a1.zip | |
TFTP: add tftpsrv command
Signed-off-by: Luca Ceresoli <luca.ceresoli@comelit.it>
Cc: Wolfgang Denk <wd@denx.de>
Acked-by: Detlev Zundel <dzu@denx.de>
Diffstat (limited to 'include/net.h')
| -rw-r--r-- | include/net.h | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/include/net.h b/include/net.h index 01f7159a0..018a74402 100644 --- a/include/net.h +++ b/include/net.h @@ -364,7 +364,8 @@ extern int		NetState;		/* Network loop state		*/  extern int		NetRestartWrap;		/* Tried all network devices	*/  #endif -typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP } proto_t; +typedef enum { BOOTP, RARP, ARP, TFTP, DHCP, PING, DNS, NFS, CDP, NETCONS, SNTP, +	       TFTPSRV } proto_t;  /* from net/net.c */  extern char	BootFile[128];			/* Boot File name		*/ |