Commit d83beb86 authored by Kevin McKinney's avatar Kevin McKinney Committed by Greg Kroah-Hartman

Staging: bcm: Fix all white space issues in IPv6ProtocolHdr.h

This patch fixes all white space issues in
IPv6ProtocolHdr.h as reported by checkpatch.pl.
Signed-off-by: default avatarKevin McKinney <klmckinney1@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7e5df051
#ifndef _IPV6_PROTOCOL_DEFINES_
#define _IPV6_PROTOCOL_DEFINES_
#define IPV6HDR_TYPE_HOPBYHOP 0x0
#define IPV6HDR_TYPE_ROUTING 0x2B
#define IPV6HDR_TYPE_FRAGMENTATION 0x2C
......@@ -10,7 +9,6 @@
#define IPV6HDR_TYPE_ENCRYPTEDSECURITYPAYLOAD 0x34
#define MASK_IPV6_CS_SPEC 0x2
#define TCP_HEADER_TYPE 0x6
#define UDP_HEADER_TYPE 0x11
#define IPV6_ICMP_HDR_TYPE 0x2
......@@ -36,7 +34,7 @@ typedef struct IPV6HeaderFormatTag
UCHAR ucHopLimit;
ULONG ulSrcIpAddress[4];
ULONG ulDestIpAddress[4];
}IPV6Header;
} IPV6Header;
typedef struct IPV6RoutingHeaderFormatTag
{
......@@ -47,7 +45,7 @@ typedef struct IPV6RoutingHeaderFormatTag
ULONG ulReserved;
//UCHAR aucAddressList[0];
}IPV6RoutingHeader;
} IPV6RoutingHeader;
typedef struct IPV6FragmentHeaderFormatTag
{
......@@ -55,7 +53,7 @@ typedef struct IPV6FragmentHeaderFormatTag
UCHAR ucReserved;
USHORT usFragmentOffset;
ULONG ulIdentification;
}IPV6FragmentHeader;
} IPV6FragmentHeader;
typedef struct IPV6DestOptionsHeaderFormatTag
{
......@@ -63,14 +61,14 @@ typedef struct IPV6DestOptionsHeaderFormatTag
UCHAR ucHdrExtLen;
UCHAR ucDestOptions[6];
//UCHAR udExtDestOptions[0];
}IPV6DestOptionsHeader;
} IPV6DestOptionsHeader;
typedef struct IPV6HopByHopOptionsHeaderFormatTag
{
UCHAR ucNextHeader;
UCHAR ucMisc[3];
ULONG ulJumboPayloadLen;
}IPV6HopByHopOptionsHeader;
} IPV6HopByHopOptionsHeader;
typedef struct IPV6AuthenticationHeaderFormatTag
{
......@@ -79,8 +77,7 @@ typedef struct IPV6AuthenticationHeaderFormatTag
USHORT usReserved;
ULONG ulSecurityParametersIndex;
//UCHAR ucAuthenticationData[0];
}IPV6AuthenticationHeader;
} IPV6AuthenticationHeader;
typedef struct IPV6IcmpHeaderFormatTag
{
......@@ -88,29 +85,24 @@ typedef struct IPV6IcmpHeaderFormatTag
UCHAR ucCode;
USHORT usChecksum;
//UCHAR ucIcmpMsg[0];
}IPV6IcmpHeader;
} IPV6IcmpHeader;
typedef enum _E_IPADDR_CONTEXT
{
eSrcIpAddress,
eDestIpAddress
}E_IPADDR_CONTEXT;
} E_IPADDR_CONTEXT;
//Function Prototypes
USHORT IpVersion6(struct bcm_mini_adapter *Adapter, /**< Pointer to the driver control structure */
PVOID pcIpHeader, /**<Pointer to the IP Hdr of the packet*/
struct bcm_classifier_rule *pstClassifierRule );
struct bcm_classifier_rule *pstClassifierRule);
VOID DumpIpv6Address(ULONG *puIpv6Address);
extern BOOLEAN MatchSrcPort(struct bcm_classifier_rule *pstClassifierRule,USHORT ushSrcPort);
extern BOOLEAN MatchDestPort(struct bcm_classifier_rule *pstClassifierRule,USHORT ushSrcPort);
extern BOOLEAN MatchProtocol(struct bcm_classifier_rule *pstClassifierRule,UCHAR ucProtocol);
extern BOOLEAN MatchSrcPort(struct bcm_classifier_rule *pstClassifierRule, USHORT ushSrcPort);
extern BOOLEAN MatchDestPort(struct bcm_classifier_rule *pstClassifierRule, USHORT ushSrcPort);
extern BOOLEAN MatchProtocol(struct bcm_classifier_rule *pstClassifierRule, UCHAR ucProtocol);
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment