~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/net/tftp.h

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *      LiMon - BOOTP/TFTP.
 
3
 *
 
4
 *      Copyright 1994, 1995, 2000 Neil Russell.
 
5
 *      Copyright 2011 Comelit Group SpA
 
6
 *                     Luca Ceresoli <luca.ceresoli@comelit.it>
 
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 */
 
19
void TftpStart(enum proto_t protocol);  /* Begin TFTP get/put */
 
20
 
 
21
#ifdef CONFIG_CMD_TFTPSRV
 
22
extern void TftpStartServer(void);      /* Wait for incoming TFTP put */
 
23
#endif
 
24
 
 
25
extern ulong TftpRRQTimeoutMSecs;
 
26
extern int TftpRRQTimeoutCountMax;
 
27
 
 
28
/**********************************************************************/
 
29
 
 
30
#endif /* __TFTP_H__ */