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