mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-08-14 20:51:26 +00:00

For all files in iproute2 which do not have an obvious license identification, mark them with SPDK GPL-2 Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
17 lines
399 B
C
17 lines
399 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* This is the userspace/kernel interface for Generic IP Chains,
|
|
required for libc6. */
|
|
#ifndef _FWCHAINS_KERNEL_HEADERS_H
|
|
#define _FWCHAINS_KERNEL_HEADERS_H
|
|
|
|
#include <limits.h>
|
|
|
|
#include <netinet/ip.h>
|
|
#include <netinet/in.h>
|
|
#include <netinet/ip_icmp.h>
|
|
#include <netinet/tcp.h>
|
|
#include <netinet/udp.h>
|
|
#include <net/if.h>
|
|
#include <sys/types.h>
|
|
#endif
|