wdenk | 592ec2c | 2000-12-28 11:02:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * LiMon - BOOTP/TFTP. |
| 3 | * |
| 4 | * Copyright 1994, 1995, 2000 Neil Russell. |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 5 | * Copyright 2011 Comelit Group SpA |
| 6 | * Luca Ceresoli <luca.ceresoli@comelit.it> |
wdenk | 592ec2c | 2000-12-28 11:02:30 +0000 | [diff] [blame] | 7 | * (See License) |
| 8 | */ |
| 9 | |
| 10 | #ifndef __TFTP_H__ |
| 11 | #define __TFTP_H__ |
| 12 | |
| 13 | /**********************************************************************/ |
| 14 | /* |
| 15 | * Global functions and variables. |
| 16 | */ |
| 17 | |
| 18 | /* tftp.c */ |
Simon Glass | 58f317d | 2011-10-24 18:00:05 +0000 | [diff] [blame] | 19 | void TftpStart(enum proto_t protocol); /* Begin TFTP get/put */ |
wdenk | 592ec2c | 2000-12-28 11:02:30 +0000 | [diff] [blame] | 20 | |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 21 | #ifdef CONFIG_CMD_TFTPSRV |
Joe Hershberger | 13dfe94 | 2012-05-15 08:59:12 +0000 | [diff] [blame] | 22 | extern void TftpStartServer(void); /* Wait for incoming TFTP put */ |
Luca Ceresoli | e59e356 | 2011-05-17 00:03:39 +0000 | [diff] [blame] | 23 | #endif |
| 24 | |
Kim Phillips | 0637059 | 2012-10-29 13:34:33 +0000 | [diff] [blame] | 25 | extern ulong TftpRRQTimeoutMSecs; |
| 26 | extern int TftpRRQTimeoutCountMax; |
| 27 | |
wdenk | 592ec2c | 2000-12-28 11:02:30 +0000 | [diff] [blame] | 28 | /**********************************************************************/ |
| 29 | |
| 30 | #endif /* __TFTP_H__ */ |