]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * net/sched/cls_rsvp6.c Special RSVP packet classifier for IPv6. | |
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, <[email protected]> | |
10 | */ | |
11 | ||
12 | #include <linux/module.h> | |
1da177e4 LT |
13 | #include <linux/types.h> |
14 | #include <linux/kernel.h> | |
1da177e4 | 15 | #include <linux/string.h> |
1da177e4 | 16 | #include <linux/errno.h> |
1da177e4 | 17 | #include <linux/ipv6.h> |
1da177e4 | 18 | #include <linux/skbuff.h> |
1da177e4 LT |
19 | #include <net/act_api.h> |
20 | #include <net/pkt_cls.h> | |
dc5fc579 | 21 | #include <net/netlink.h> |
1da177e4 LT |
22 | |
23 | #define RSVP_DST_LEN 4 | |
24 | #define RSVP_ID "rsvp6" | |
25 | #define RSVP_OPS cls_rsvp6_ops | |
26 | ||
27 | #include "cls_rsvp.h" | |
28 | MODULE_LICENSE("GPL"); |