/
githubmirror
/
ipxe
Обзор
Документация
Войти
/
githubmirror
/
ipxe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/include/usr/route.h
36 строк
685 B
Michael Brown
[build] Mark core files as permitted for UEFI Secure Boot
14 янв 2026, 16:25
14 янв 2026, 16:25
6cccb3b
Код
Авторство
О чём код?
#ifndef _USR_ROUTE_H #define _USR_ROUTE_H /** @file * * Routing management * */ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); FILE_SECBOOT ( PERMITTED ); #include <ipxe/tables.h> /** A routing family */ struct routing_family { /** * Print routes for a network device * * @v netdev Network device */ void ( * print ) ( struct net_device *netdev ); }; /** Routing family table */ #define ROUTING_FAMILIES __table ( struct routing_family, "routing_families" ) /** Declare a routing family */ #define __routing_family( order ) __table_entry ( ROUTING_FAMILIES, order ) #define ROUTING_IPV4 01 #define ROUTING_IPV6 02 extern void route ( void ); #endif /* _USR_ROUTE_H */