1/*
2 * net/sched/cls_rsvp.c	Special RSVP packet classifier for IPv4.
3 *
4 *		This program is free software; you can redistribute it and/or
5 *		modify it under the terms of the GNU General Public License
6 *		as published by the Free Software Foundation; either version
7 *		2 of the License, or (at your option) any later version.
8 *
9 * Authors:	Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 */
11
12#include <linux/module.h>
13#include <asm/uaccess.h>
14#include <asm/system.h>
15#include <linux/bitops.h>
16#include <linux/types.h>
17#include <linux/kernel.h>
18#include <linux/string.h>
19#include <linux/mm.h>
20#include <linux/socket.h>
21#include <linux/sockios.h>
22#include <linux/in.h>
23#include <linux/errno.h>
24#include <linux/interrupt.h>
25#include <linux/if_ether.h>
26#include <linux/inet.h>
27#include <linux/netdevice.h>
28#include <linux/etherdevice.h>
29#include <linux/notifier.h>
30#include <net/ip.h>
31#include <net/route.h>
32#include <linux/skbuff.h>
33#include <net/sock.h>
34#include <net/netlink.h>
35#include <net/act_api.h>
36#include <net/pkt_cls.h>
37
38#define RSVP_DST_LEN	1
39#define RSVP_ID		"rsvp"
40#define RSVP_OPS	cls_rsvp_ops
41
42#include "cls_rsvp.h"
43MODULE_LICENSE("GPL");
44