blob: 93194f6586df95577621e5f0276fba428c749872 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _GPXE_FTP_H
#define _GPXE_FTP_H
/** @file
*
* File transfer protocol
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
/** FTP default port */
#define FTP_PORT 21
#endif /* _GPXE_FTP_H */
|