GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / hv / rndis_filter.h
blob764b9bf3e5dc9cf013a837504d96ab71800ee67f
1 /*
3 * Copyright (c) 2009, Microsoft Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
18 * Authors:
19 * Haiyang Zhang <haiyangz@microsoft.com>
20 * Hank Janssen <hjanssen@microsoft.com>
25 #ifndef _RNDISFILTER_H_
26 #define _RNDISFILTER_H_
28 #define __struct_bcount(x)
30 #include "netvsc.h"
32 #include "rndis.h"
34 #define RNDIS_HEADER_SIZE (sizeof(struct rndis_message) - \
35 sizeof(union rndis_message_container))
37 #define NDIS_PACKET_TYPE_DIRECTED 0x00000001
38 #define NDIS_PACKET_TYPE_MULTICAST 0x00000002
39 #define NDIS_PACKET_TYPE_ALL_MULTICAST 0x00000004
40 #define NDIS_PACKET_TYPE_BROADCAST 0x00000008
41 #define NDIS_PACKET_TYPE_SOURCE_ROUTING 0x00000010
42 #define NDIS_PACKET_TYPE_PROMISCUOUS 0x00000020
43 #define NDIS_PACKET_TYPE_SMT 0x00000040
44 #define NDIS_PACKET_TYPE_ALL_LOCAL 0x00000080
45 #define NDIS_PACKET_TYPE_GROUP 0x00000100
46 #define NDIS_PACKET_TYPE_ALL_FUNCTIONAL 0x00000200
47 #define NDIS_PACKET_TYPE_FUNCTIONAL 0x00000400
48 #define NDIS_PACKET_TYPE_MAC_FRAME 0x00000800
51 /* Interface */
53 extern int RndisFilterInit(struct netvsc_driver *driver);
55 #endif /* _RNDISFILTER_H_ */