]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - net/sched/cls_rsvp6.c
Merge tag 'nios2-v5.4-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan...
[mirror_ubuntu-hirsute-kernel.git] / net / sched / cls_rsvp6.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * net/sched/cls_rsvp6.c Special RSVP packet classifier for IPv6.
4 *
1da177e4
LT
5 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6 */
7
8#include <linux/module.h>
1da177e4
LT
9#include <linux/types.h>
10#include <linux/kernel.h>
1da177e4 11#include <linux/string.h>
1da177e4 12#include <linux/errno.h>
1da177e4 13#include <linux/ipv6.h>
1da177e4 14#include <linux/skbuff.h>
1da177e4
LT
15#include <net/act_api.h>
16#include <net/pkt_cls.h>
dc5fc579 17#include <net/netlink.h>
1da177e4
LT
18
19#define RSVP_DST_LEN 4
20#define RSVP_ID "rsvp6"
21#define RSVP_OPS cls_rsvp6_ops
22
23#include "cls_rsvp.h"
24MODULE_LICENSE("GPL");