mirror of
https://github.com/ipxe/ipxe
synced 2025-12-25 17:12:40 +03:00
Add FILE_LICENCE declarations to almost all files that make up the various standard builds of gPXE.
16 lines
191 B
C
16 lines
191 B
C
#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 */
|