blob: 3abdf7bc267f3b7219f4af7512eb13d077cfcbbf [file] [log] [blame]
wdenk592ec2c2000-12-28 11:02:30 +00001/*
2 * LiMon - BOOTP/TFTP.
3 *
4 * Copyright 1994, 1995, 2000 Neil Russell.
Luca Ceresolie59e3562011-05-17 00:03:39 +00005 * Copyright 2011 Comelit Group SpA
6 * Luca Ceresoli <luca.ceresoli@comelit.it>
wdenk592ec2c2000-12-28 11:02:30 +00007 * (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 */
19extern void TftpStart (void); /* Begin TFTP get */
20
Luca Ceresolie59e3562011-05-17 00:03:39 +000021#ifdef CONFIG_CMD_TFTPSRV
22extern void TftpStartServer(void); /* Wait for incoming TFTP put */
23#endif
24
wdenk592ec2c2000-12-28 11:02:30 +000025/**********************************************************************/
26
27#endif /* __TFTP_H__ */