OSDN Git Service

rtl8723au: Remove some trailing white space
[android-x86/external-modules-rtl8723au.git] / include / ip.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that 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.
13  *
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.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17  *
18  *
19  ******************************************************************************/
20 #ifndef _LINUX_IP_H
21 #define _LINUX_IP_H
22 #include <rtw_byteorder.h>
23
24 /* SOL_IP socket options */
25
26 #define IPTOS_TOS_MASK          0x1E
27 #define IPTOS_TOS(tos)          ((tos)&IPTOS_TOS_MASK)
28 #define IPTOS_LOWDELAY          0x10
29 #define IPTOS_THROUGHPUT        0x08
30 #define IPTOS_RELIABILITY       0x04
31 #define IPTOS_MINCOST           0x02
32
33 #define IPTOS_PREC_MASK         0xE0
34 #define IPTOS_PREC(tos)         ((tos)&IPTOS_PREC_MASK)
35 #define IPTOS_PREC_NETCONTROL           0xe0
36 #define IPTOS_PREC_INTERNETCONTROL      0xc0
37 #define IPTOS_PREC_CRITIC_ECP           0xa0
38 #define IPTOS_PREC_FLASHOVERRIDE        0x80
39 #define IPTOS_PREC_FLASH                0x60
40 #define IPTOS_PREC_IMMEDIATE            0x40
41 #define IPTOS_PREC_PRIORITY             0x20
42 #define IPTOS_PREC_ROUTINE              0x00
43
44
45 /* IP options */
46 #define IPOPT_COPY              0x80
47 #define IPOPT_CLASS_MASK        0x60
48 #define IPOPT_NUMBER_MASK       0x1f
49
50 #define IPOPT_COPIED(o)         ((o)&IPOPT_COPY)
51 #define IPOPT_CLASS(o)          ((o)&IPOPT_CLASS_MASK)
52 #define IPOPT_NUMBER(o)         ((o)&IPOPT_NUMBER_MASK)
53
54 #define IPOPT_CONTROL           0x00
55 #define IPOPT_RESERVED1         0x20
56 #define IPOPT_MEASUREMENT       0x40
57 #define IPOPT_RESERVED2         0x60
58
59 #define IPOPT_END       (0 |IPOPT_CONTROL)
60 #define IPOPT_NOOP      (1 |IPOPT_CONTROL)
61 #define IPOPT_SEC       (2 |IPOPT_CONTROL|IPOPT_COPY)
62 #define IPOPT_LSRR      (3 |IPOPT_CONTROL|IPOPT_COPY)
63 #define IPOPT_TIMESTAMP (4 |IPOPT_MEASUREMENT)
64 #define IPOPT_RR        (7 |IPOPT_CONTROL)
65 #define IPOPT_SID       (8 |IPOPT_CONTROL|IPOPT_COPY)
66 #define IPOPT_SSRR      (9 |IPOPT_CONTROL|IPOPT_COPY)
67 #define IPOPT_RA        (20|IPOPT_CONTROL|IPOPT_COPY)
68
69 #define IPVERSION       4
70 #define MAXTTL          255
71 #define IPDEFTTL        64
72
73 /* struct timestamp, struct route and MAX_ROUTES are removed.
74
75    REASONS: it is clear that nobody used them because:
76    - MAX_ROUTES value was wrong.
77    - "struct route" was wrong.
78    - "struct timestamp" had fatally misaligned bitfields and was completely unusable.
79  */
80
81 #define IPOPT_OPTVAL 0
82 #define IPOPT_OLEN   1
83 #define IPOPT_OFFSET 2
84 #define IPOPT_MINOFF 4
85 #define MAX_IPOPTLEN 40
86 #define IPOPT_NOP IPOPT_NOOP
87 #define IPOPT_EOL IPOPT_END
88 #define IPOPT_TS  IPOPT_TIMESTAMP
89
90 #define IPOPT_TS_TSONLY         0               /* timestamps only */
91 #define IPOPT_TS_TSANDADDR      1               /* timestamps and addresses */
92 #define IPOPT_TS_PRESPEC        3               /* specified modules only */
93
94 struct ip_options {
95   __u32         faddr;                          /* Saved first hop address */
96   unsigned char optlen;
97   unsigned char srr;
98   unsigned char rr;
99   unsigned char ts;
100   unsigned char is_setbyuser:1,                 /* Set by setsockopt?                   */
101                 is_data:1,                      /* Options in __data, rather than skb   */
102                 is_strictroute:1,               /* Strict source route                  */
103                 srr_is_hit:1,                   /* Packet destination addr was our one  */
104                 is_changed:1,                   /* IP checksum more not valid           */
105                 rr_needaddr:1,                  /* Need to record addr of outgoing dev  */
106                 ts_needtime:1,                  /* Need to record timestamp             */
107                 ts_needaddr:1;                  /* Need to record addr of outgoing dev  */
108   unsigned char router_alert;
109   unsigned char __pad1;
110   unsigned char __pad2;
111   unsigned char __data[0];
112 };
113
114 #define optlength(opt) (sizeof(struct ip_options) + opt->optlen)
115
116 struct iphdr {
117 #if defined(__LITTLE_ENDIAN_BITFIELD)
118         __u8    ihl:4,
119                 version:4;
120 #elif defined (__BIG_ENDIAN_BITFIELD)
121         __u8    version:4,
122                 ihl:4;
123 #else
124 #error  "Please fix <asm/byteorder.h>"
125 #endif
126         __u8    tos;
127         __u16   tot_len;
128         __u16   id;
129         __u16   frag_off;
130         __u8    ttl;
131         __u8    protocol;
132         __u16   check;
133         __u32   saddr;
134         __u32   daddr;
135         /*The options start here. */
136 };
137
138 #endif  /* _LINUX_IP_H */