<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>1129 &#187; ioctl</title>
	<atom:link href="http://www.vi1129.com/tag/ioctl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vi1129.com</link>
	<description>学无止境 我心飞翔</description>
	<lastBuildDate>Mon, 05 Jul 2010 15:30:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ioctl及getifaddrs读取IPv4,IPv6网卡信息</title>
		<link>http://www.vi1129.com/2010/01/ioctl-getifaddrs-ipv46/</link>
		<comments>http://www.vi1129.com/2010/01/ioctl-getifaddrs-ipv46/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 09:14:30 +0000</pubDate>
		<dc:creator>keykey</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[程序人生]]></category>
		<category><![CDATA[getifaddrs]]></category>
		<category><![CDATA[ioctl]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://www.vi1129.com/?p=617</guid>
		<description><![CDATA[<p>使用ioctl的SIOCGIFCONF可以读取所有网卡信息。ioctl调用后返回指向ifconf的结构链表，其中包含了指向ifreq的结构指针。ifconf及ifreq定义在net/if.h中。</p>
<p>《UNIX网络编程》中提供了get_ifi_info函数的实现方法，使用这种方式来获取网络信息。在LINUX下，这种方式不能获得IPV6的网卡信息。《UNIX网络编程》中有如下描述：</p>
<p>在支持IPV6的系统中，没有关于对SIOCGIFCONF请求是否返回IPV6地址的标准。我们给支持IPV6的新系统增加了一个case语句， 这是为了预防万一。问题在于ifreq中的联合把返回的地址定义成一个通用的16字节套接口地址结构，适合16字节的IPV4 socket_in结构，但对于24字节的IPV6 socket_in6结构太小了。如果返回IPV6地址，将可能破环现有的在每个ifreq结构中采用固定大小的套接口地址结构的代码。</p>
<p>经测试，在fedor6-2.6.18kernel中无法返回ipv6地址，事实上，返回的地址簇总是AF_INET,而并非AF_INET6。
这种方法的实现代码如下：

net_if.h</p>

?View Code C1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef __NET_INF_H
#define __NET_INF_H
&#160;
#include &#60;net/if.h&#62;
#include &#60;stdio.h&#62;
#include &#60;errno.h&#62;
#include &#60;unistd.h&#62;
#include &#60;netinet/in.h&#62;
#include &#60;sys/ioctl.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;string.h&#62;
#include &#60;sys/types.h&#62;
#include &#60;sys/socket.h&#62;
#include &#60;arpa/inet.h&#62;
&#160;
#define IFI_NAME 16
#define IFI_HADDR 8
&#160;
typedef struct ifi_info
&#123;
  char ifi_name&#91;IFI_NAME&#93;;
  u_char ifi_haddr&#91;IFI_HADDR&#93;;
  u_short ifi_hlen;
  short ifi_flags;
  short ifi_myflags;
  struct sockaddr *ifi_addr;
  struct sockaddr *ifi_brdaddr;
  struct sockaddr *ifi_dstaddr;
  struct ifi_info <p><a href="http://www.vi1129.com/2010/01/ioctl-getifaddrs-ipv46/">继续阅读</a></p>


关联文章:<ol><li><a href='http://www.vi1129.com/2010/03/sock_raw-dump/' rel='bookmark' title='Permanent Link: 使用原始套接字SOCK_RAW捕捉网络数据包并简单分析'>使用原始套接字SOCK_RAW捕捉网络数据包并简单分析</a></li>
<li><a href='http://www.vi1129.com/2010/02/node/' rel='bookmark' title='Permanent Link: 自写一则单链表小程序'>自写一则单链表小程序</a></li>
<li><a href='http://www.vi1129.com/2009/06/snmp-trap/' rel='bookmark' title='Permanent Link: 一种IP改变唤醒SNMP TRAP的实现源码'>一种IP改变唤醒SNMP TRAP的实现源码</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>使用ioctl的SIOCGIFCONF可以读取所有网卡信息。ioctl调用后返回指向ifconf的结构链表，其中包含了指向ifreq的结构指针。ifconf及ifreq定义在net/if.h中。</p>
<p>《UNIX网络编程》中提供了get_ifi_info函数的实现方法，使用这种方式来获取网络信息。在LINUX下，这种方式不能获得IPV6的网卡信息。《UNIX网络编程》中有如下描述：</p>
<blockquote><p>在支持IPV6的系统中，没有关于对SIOCGIFCONF请求是否返回IPV6地址的标准。我们给支持IPV6的新系统增加了一个case语句， 这是为了预防万一。问题在于ifreq中的联合把返回的地址定义成一个通用的16字节套接口地址结构，适合16字节的IPV4 socket_in结构，但对于24字节的IPV6 socket_in6结构太小了。如果返回IPV6地址，将可能破环现有的在每个ifreq结构中采用固定大小的套接口地址结构的代码。</p></blockquote>
<p>经测试，在fedor6-2.6.18kernel中无法返回ipv6地址，事实上，返回的地址簇总是AF_INET,而并非AF_INET6。<br />
这种方法的实现代码如下：<br />
<span id="more-617"></span><br />
net_if.h</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p617code5'); return false;">View Code</a> C</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p6175"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
</pre></td><td class="code" id="p617code5"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#ifndef __NET_INF_H</span>
<span style="color: #339933;">#define __NET_INF_H</span>
&nbsp;
<span style="color: #339933;">#include &lt;net/if.h&gt;</span>
<span style="color: #339933;">#include &lt;stdio.h&gt;</span>
<span style="color: #339933;">#include &lt;errno.h&gt;</span>
<span style="color: #339933;">#include &lt;unistd.h&gt;</span>
<span style="color: #339933;">#include &lt;netinet/in.h&gt;</span>
<span style="color: #339933;">#include &lt;sys/ioctl.h&gt;</span>
<span style="color: #339933;">#include &lt;stdlib.h&gt;</span>
<span style="color: #339933;">#include &lt;string.h&gt;</span>
<span style="color: #339933;">#include &lt;sys/types.h&gt;</span>
<span style="color: #339933;">#include &lt;sys/socket.h&gt;</span>
<span style="color: #339933;">#include &lt;arpa/inet.h&gt;</span>
&nbsp;
<span style="color: #339933;">#define IFI_NAME 16</span>
<span style="color: #339933;">#define IFI_HADDR 8</span>
&nbsp;
<span style="color: #993333;">typedef</span> <span style="color: #993333;">struct</span> ifi_info
<span style="color: #009900;">&#123;</span>
  <span style="color: #993333;">char</span> ifi_name<span style="color: #009900;">&#91;</span>IFI_NAME<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  u_char ifi_haddr<span style="color: #009900;">&#91;</span>IFI_HADDR<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  u_short ifi_hlen<span style="color: #339933;">;</span>
  <span style="color: #993333;">short</span> ifi_flags<span style="color: #339933;">;</span>
  <span style="color: #993333;">short</span> ifi_myflags<span style="color: #339933;">;</span>
  <span style="color: #993333;">struct</span> sockaddr <span style="color: #339933;">*</span>ifi_addr<span style="color: #339933;">;</span>
  <span style="color: #993333;">struct</span> sockaddr <span style="color: #339933;">*</span>ifi_brdaddr<span style="color: #339933;">;</span>
  <span style="color: #993333;">struct</span> sockaddr <span style="color: #339933;">*</span>ifi_dstaddr<span style="color: #339933;">;</span>
  <span style="color: #993333;">struct</span> ifi_info <span style="color: #339933;">*</span>ifi_next<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>ifi_info<span style="color: #339933;">;</span>
&nbsp;
<span style="color: #339933;">#define IFI_ALIAS 1</span>
&nbsp;
<span style="color: #993333;">struct</span> ifi_info <span style="color: #339933;">*</span>get_ifi_info<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span><span style="color: #339933;">,</span> <span style="color: #993333;">int</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #993333;">void</span> free_ifi_info<span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> ifi_info <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #339933;">#endif</span></pre></td></tr></table></div>

<p>net_if.c</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p617code6'); return false;">View Code</a> C</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p6176"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
</pre></td><td class="code" id="p617code6"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &quot;net_if.h&quot;</span>
&nbsp;
ifi_info <span style="color: #339933;">*</span>get_ifi_info<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> family<span style="color: #339933;">,</span> <span style="color: #993333;">int</span> doaliases<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  ifi_info <span style="color: #339933;">*</span>ifi<span style="color: #339933;">,</span> <span style="color: #339933;">*</span>ifihead<span style="color: #339933;">,</span> <span style="color: #339933;">**</span>ifipnext<span style="color: #339933;">;</span>
  <span style="color: #993333;">int</span> sockfd<span style="color: #339933;">,</span> len<span style="color: #339933;">,</span> lastlen<span style="color: #339933;">,</span> flags<span style="color: #339933;">,</span> myflags<span style="color: #339933;">;</span>
  <span style="color: #993333;">char</span> <span style="color: #339933;">*</span>ptr<span style="color: #339933;">,</span> <span style="color: #339933;">*</span>buf<span style="color: #339933;">,</span> lastname<span style="color: #009900;">&#91;</span>IFNAMSIZ<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #339933;">*</span>cptr<span style="color: #339933;">;</span>
  <span style="color: #993333;">struct</span> ifconf ifc<span style="color: #339933;">;</span>
  <span style="color: #993333;">struct</span> ifreq <span style="color: #339933;">*</span>ifr<span style="color: #339933;">,</span> ifrcopy<span style="color: #339933;">;</span>
  <span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span>sinptr<span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>sockfd<span style="color: #339933;">=</span>socket<span style="color: #009900;">&#40;</span>family<span style="color: #339933;">,</span> SOCK_DGRAM<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&lt;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;socket error.<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    exit<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  lastlen <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
&nbsp;
  len <span style="color: #339933;">=</span> <span style="color: #0000dd;">10</span><span style="color: #339933;">*</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> ifreq<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    buf <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">char</span><span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>malloc<span style="color: #009900;">&#40;</span>len<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    ifc.<span style="color: #202020;">ifc_len</span> <span style="color: #339933;">=</span> len<span style="color: #339933;">;</span>
    ifc.<span style="color: #202020;">ifc_buf</span> <span style="color: #339933;">=</span> buf<span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ioctl<span style="color: #009900;">&#40;</span>sockfd<span style="color: #339933;">,</span> SIOCGIFCONF<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>ifc<span style="color: #009900;">&#41;</span><span style="color: #339933;">&lt;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>errno<span style="color: #339933;">!=</span>EINVAL<span style="color: #339933;">||</span>lastlen<span style="color: #339933;">!=</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#123;</span>
        <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;ioctl error.<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">else</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifc.<span style="color: #202020;">ifc_len</span> <span style="color: #339933;">==</span> lastlen<span style="color: #009900;">&#41;</span>
        <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
      lastlen <span style="color: #339933;">=</span> ifc.<span style="color: #202020;">ifc_len</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    len <span style="color: #339933;">+=</span> <span style="color: #0000dd;">10</span><span style="color: #339933;">*</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> ifreq<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    free<span style="color: #009900;">&#40;</span>buf<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  ifihead <span style="color: #339933;">=</span> NULL<span style="color: #339933;">;</span>
  ifipnext <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span>ifihead<span style="color: #339933;">;</span>
  lastname<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span>ptr <span style="color: #339933;">=</span> buf<span style="color: #339933;">;</span> ptr<span style="color: #339933;">&lt;</span>buf<span style="color: #339933;">+</span>ifc.<span style="color: #202020;">ifc_len</span><span style="color: #339933;">;</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    ifr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> ifreq<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>ptr<span style="color: #339933;">;</span>
<span style="color: #339933;">#ifdef HAVE_SOCKADDR_SA_LEN</span>
    len <span style="color: #339933;">=</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr<span style="color: #009900;">&#41;</span><span style="color: #339933;">&gt;</span>ifr<span style="color: #339933;">-&gt;</span>ifr_addr.<span style="color: #202020;">sa_len</span><span style="color: #339933;">?</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr<span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span>ifr<span style="color: #339933;">-&gt;</span>ifr_addr.<span style="color: #202020;">sa_len</span><span style="color: #339933;">;</span>
<span style="color: #339933;">#else</span>
    <span style="color: #b1b100;">switch</span> <span style="color: #009900;">&#40;</span>ifr<span style="color: #339933;">-&gt;</span>ifr_addr.<span style="color: #202020;">sa_family</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
<span style="color: #339933;">#ifdef IPV6</span>
    <span style="color: #b1b100;">case</span> AF_INET6<span style="color: #339933;">:</span>
      len <span style="color: #339933;">=</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in6<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
<span style="color: #339933;">#endif</span>
    <span style="color: #b1b100;">case</span> AF_INET<span style="color: #339933;">:</span>
    <span style="color: #b1b100;">default</span><span style="color: #339933;">:</span>
      len <span style="color: #339933;">=</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">#endif</span>
&nbsp;
    ptr <span style="color: #339933;">+=</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>ifr<span style="color: #339933;">-&gt;</span>ifr_name<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> len<span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifr<span style="color: #339933;">-&gt;</span>ifr_addr.<span style="color: #202020;">sa_family</span> <span style="color: #339933;">!=</span> family<span style="color: #009900;">&#41;</span>
      <span style="color: #b1b100;">continue</span><span style="color: #339933;">;</span>
&nbsp;
    myflags <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>cptr<span style="color: #339933;">=</span>strchr<span style="color: #009900;">&#40;</span>ifr<span style="color: #339933;">-&gt;</span>ifr_name<span style="color: #339933;">,</span> <span style="color: #ff0000;">':'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">!=</span>NULL<span style="color: #009900;">&#41;</span>
      <span style="color: #339933;">*</span>cptr <span style="color: #339933;">=</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>strncmp<span style="color: #009900;">&#40;</span>lastname<span style="color: #339933;">,</span> ifr<span style="color: #339933;">-&gt;</span>ifr_name<span style="color: #339933;">,</span> IFNAMSIZ<span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>doaliases <span style="color: #339933;">==</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
        <span style="color: #b1b100;">continue</span><span style="color: #339933;">;</span>
      myflags <span style="color: #339933;">=</span> IFI_ALIAS<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    memcpy<span style="color: #009900;">&#40;</span>lastname<span style="color: #339933;">,</span> ifr<span style="color: #339933;">-&gt;</span>ifr_name<span style="color: #339933;">,</span> IFNAMSIZ<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    ifrcopy <span style="color: #339933;">=</span> <span style="color: #339933;">*</span>ifr<span style="color: #339933;">;</span>
    ioctl<span style="color: #009900;">&#40;</span>sockfd<span style="color: #339933;">,</span> SIOCGIFFLAGS<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>ifrcopy<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    flags <span style="color: #339933;">=</span> ifrcopy.<span style="color: #202020;">ifr_flags</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>flags<span style="color: #339933;">&amp;</span>IFF_UP<span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
      <span style="color: #b1b100;">continue</span><span style="color: #339933;">;</span>
    <span style="color: #808080; font-style: italic;">/*
    if ((flags&amp;IFF_BROADCAST)==0)
      continue;
    */</span>
    ifi <span style="color: #339933;">=</span> calloc<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> ifi_info<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #339933;">*</span>ifipnext <span style="color: #339933;">=</span> ifi<span style="color: #339933;">;</span>
    ifipnext <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_next<span style="color: #339933;">;</span>
    ifi<span style="color: #339933;">-&gt;</span>ifi_flags <span style="color: #339933;">=</span> flags<span style="color: #339933;">;</span>
    ifi<span style="color: #339933;">-&gt;</span>ifi_myflags <span style="color: #339933;">=</span> myflags<span style="color: #339933;">;</span>
    memcpy<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_name<span style="color: #339933;">,</span> ifr<span style="color: #339933;">-&gt;</span>ifr_name<span style="color: #339933;">,</span> IFI_NAME<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    ifi<span style="color: #339933;">-&gt;</span>ifi_name<span style="color: #009900;">&#91;</span>IFI_NAME<span style="color: #339933;">-</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">'<span style="color: #006699; font-weight: bold;">\0</span>'</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">switch</span> <span style="color: #009900;">&#40;</span>ifr<span style="color: #339933;">-&gt;</span>ifr_addr.<span style="color: #202020;">sa_family</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">case</span> AF_INET<span style="color: #339933;">:</span>
      sinptr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;</span>ifr<span style="color: #339933;">-&gt;</span>ifr_addr<span style="color: #339933;">;</span>
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr <span style="color: #339933;">==</span> NULL<span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#123;</span>
        ifi<span style="color: #339933;">-&gt;</span>ifi_addr <span style="color: #339933;">=</span> calloc<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        memcpy<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #339933;">,</span> sinptr<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">#ifdef SIOCGIFBRDADDR</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>flags <span style="color: #339933;">&amp;</span> IFF_BROADCAST<span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
          ioctl<span style="color: #009900;">&#40;</span>sockfd<span style="color: #339933;">,</span> SIOCGIFBRDADDR<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>ifrcopy<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          sinptr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;</span>ifrcopy.<span style="color: #202020;">ifr_broadaddr</span><span style="color: #339933;">;</span>
          ifi<span style="color: #339933;">-&gt;</span>ifi_brdaddr <span style="color: #339933;">=</span> calloc<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          memcpy<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_brdaddr<span style="color: #339933;">,</span> sinptr<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">#endif</span>
<span style="color: #339933;">#ifdef SIOCGIFDSTADDR</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>flags <span style="color: #339933;">&amp;</span> IFF_POINTOPOINT<span style="color: #009900;">&#41;</span>
        <span style="color: #009900;">&#123;</span>
          ioctl<span style="color: #009900;">&#40;</span>sockfd<span style="color: #339933;">,</span> SIOCGIFDSTADDR<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>ifrcopy<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          sinptr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;</span>ifrcopy.<span style="color: #202020;">ifr_dstaddr</span><span style="color: #339933;">;</span>
          ifi<span style="color: #339933;">-&gt;</span>ifi_dstaddr <span style="color: #339933;">=</span> calloc<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
          memcpy<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_dstaddr<span style="color: #339933;">,</span> sinptr<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #009900;">&#125;</span>
<span style="color: #339933;">#endif</span>
      <span style="color: #009900;">&#125;</span>
      <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">default</span><span style="color: #339933;">:</span>
      <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
  <span style="color: #009900;">&#125;</span>
  free<span style="color: #009900;">&#40;</span>buf<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">return</span><span style="color: #009900;">&#40;</span>ifihead<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">void</span> free_ifi_info<span style="color: #009900;">&#40;</span>ifi_info <span style="color: #339933;">*</span>ifihead<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  ifi_info <span style="color: #339933;">*</span>ifi<span style="color: #339933;">,</span> <span style="color: #339933;">*</span>ifinext<span style="color: #339933;">;</span>
  <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">=</span>ifihead<span style="color: #339933;">;</span> ifi<span style="color: #339933;">!=</span>NULL<span style="color: #339933;">;</span> ifi<span style="color: #339933;">=</span>ifinext<span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #339933;">!=</span>NULL<span style="color: #009900;">&#41;</span>
      free<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_brdaddr<span style="color: #339933;">!=</span>NULL<span style="color: #009900;">&#41;</span>
      free<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_brdaddr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_dstaddr<span style="color: #339933;">!=</span>NULL<span style="color: #009900;">&#41;</span>
      free<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_dstaddr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    ifinext <span style="color: #339933;">=</span> ifi<span style="color: #339933;">-&gt;</span>ifi_next<span style="color: #339933;">;</span>
&nbsp;
    free<span style="color: #009900;">&#40;</span>ifi<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">char</span> <span style="color: #339933;">*</span>sock_ntop<span style="color: #009900;">&#40;</span><span style="color: #993333;">const</span> <span style="color: #993333;">struct</span> sockaddr <span style="color: #339933;">*</span>sa<span style="color: #339933;">,</span> socklen_t salen<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  <span style="color: #993333;">char</span> portstr<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">7</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
  <span style="color: #993333;">static</span> <span style="color: #993333;">char</span> str<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">128</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">switch</span> <span style="color: #009900;">&#40;</span>sa<span style="color: #339933;">-&gt;</span>sa_family<span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">case</span> AF_INET<span style="color: #339933;">:</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span>sin <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>sa<span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>inet_ntop<span style="color: #009900;">&#40;</span>AF_INET<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>sin<span style="color: #339933;">-&gt;</span>sin_addr<span style="color: #339933;">,</span> str<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>str<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span>NULL<span style="color: #009900;">&#41;</span>
        <span style="color: #b1b100;">return</span> NULL<span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ntohs<span style="color: #009900;">&#40;</span>sin<span style="color: #339933;">-&gt;</span>sin_port<span style="color: #009900;">&#41;</span><span style="color: #339933;">!=</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#123;</span>
        snprintf<span style="color: #009900;">&#40;</span>portstr<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>portstr<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;.%d&quot;</span><span style="color: #339933;">,</span> ntohs<span style="color: #009900;">&#40;</span>sin<span style="color: #339933;">-&gt;</span>sin_port<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        strcat<span style="color: #009900;">&#40;</span>str<span style="color: #339933;">,</span> portstr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
      <span style="color: #b1b100;">return</span> str<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">case</span> AF_INET6<span style="color: #339933;">:</span>
    <span style="color: #009900;">&#123;</span>
      <span style="color: #993333;">struct</span> sockaddr_in6 <span style="color: #339933;">*</span>sin <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in6 <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>sa<span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>inet_ntop<span style="color: #009900;">&#40;</span>AF_INET6<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>sin<span style="color: #339933;">-&gt;</span>sin6_addr<span style="color: #339933;">,</span> str<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>str<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span>NULL<span style="color: #009900;">&#41;</span>
        <span style="color: #b1b100;">return</span> NULL<span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ntohs<span style="color: #009900;">&#40;</span>sin<span style="color: #339933;">-&gt;</span>sin6_port<span style="color: #009900;">&#41;</span><span style="color: #339933;">!=</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
      <span style="color: #009900;">&#123;</span>
        snprintf<span style="color: #009900;">&#40;</span>portstr<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>portstr<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;.%d&quot;</span><span style="color: #339933;">,</span> ntohs<span style="color: #009900;">&#40;</span>sin<span style="color: #339933;">-&gt;</span>sin6_port<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        strcat<span style="color: #009900;">&#40;</span>str<span style="color: #339933;">,</span> portstr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span>
      <span style="color: #b1b100;">return</span> str<span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
  <span style="color: #b1b100;">default</span><span style="color: #339933;">:</span>
    <span style="color: #b1b100;">return</span> NULL<span style="color: #339933;">;</span>
    <span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> argc<span style="color: #339933;">,</span> <span style="color: #993333;">char</span> <span style="color: #339933;">*</span>argv<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
  ifi_info <span style="color: #339933;">*</span>ifi<span style="color: #339933;">,</span> <span style="color: #339933;">*</span>ifihead<span style="color: #339933;">;</span>
  <span style="color: #993333;">struct</span> sockaddr <span style="color: #339933;">*</span>sa<span style="color: #339933;">;</span>
  u_char <span style="color: #339933;">*</span>ptr<span style="color: #339933;">;</span>
  <span style="color: #993333;">int</span> i<span style="color: #339933;">,</span> family<span style="color: #339933;">,</span> doaliases<span style="color: #339933;">;</span>
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>argc<span style="color: #339933;">!=</span><span style="color: #0000dd;">3</span><span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;usage: ./prifinfo &lt;inet4 | inet 6&gt; &lt;doaliases&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    exit<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>strcmp<span style="color: #009900;">&#40;</span>argv<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;inet4&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
    family <span style="color: #339933;">=</span> AF_INET<span style="color: #339933;">;</span>
<span style="color: #339933;">#ifdef IPV6</span>
  <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>strcmp<span style="color: #009900;">&#40;</span>argv<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;inet6&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
    family <span style="color: #339933;">=</span>AF_INET6<span style="color: #339933;">;</span>
<span style="color: #339933;">#endif</span>
  <span style="color: #b1b100;">else</span>
  <span style="color: #009900;">&#123;</span>
    <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;invalid &lt;address-family&gt;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    exit<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  doaliases <span style="color: #339933;">=</span> atoi<span style="color: #009900;">&#40;</span>argv<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  <span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span>ifihead <span style="color: #339933;">=</span> ifi <span style="color: #339933;">=</span> get_ifi_info<span style="color: #009900;">&#40;</span>family<span style="color: #339933;">,</span> doaliases<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      ifi<span style="color: #339933;">!=</span>NULL<span style="color: #339933;">;</span>ifi<span style="color: #339933;">=</span>ifi<span style="color: #339933;">-&gt;</span>ifi_next<span style="color: #009900;">&#41;</span>
  <span style="color: #009900;">&#123;</span>
    <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%s:&lt;&quot;</span><span style="color: #339933;">,</span> ifi<span style="color: #339933;">-&gt;</span>ifi_name<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_flags<span style="color: #339933;">&amp;</span>IFF_UP<span style="color: #009900;">&#41;</span> <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;UP&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_flags<span style="color: #339933;">&amp;</span>IFF_BROADCAST<span style="color: #009900;">&#41;</span> <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;BCAST&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_flags<span style="color: #339933;">&amp;</span>IFF_MULTICAST<span style="color: #009900;">&#41;</span> <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;MCAST&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_flags<span style="color: #339933;">&amp;</span>IFF_LOOPBACK<span style="color: #009900;">&#41;</span> <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;LOOP&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_flags<span style="color: #339933;">&amp;</span>IFF_POINTOPOINT<span style="color: #009900;">&#41;</span> <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;P2P&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>i<span style="color: #339933;">=</span>ifi<span style="color: #339933;">-&gt;</span>ifi_hlen<span style="color: #009900;">&#41;</span><span style="color: #339933;">&gt;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
    <span style="color: #009900;">&#123;</span>
      ptr <span style="color: #339933;">=</span> ifi<span style="color: #339933;">-&gt;</span>ifi_haddr<span style="color: #339933;">;</span>
      <span style="color: #b1b100;">do</span>
      <span style="color: #009900;">&#123;</span>
        <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%s%x&quot;</span><span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span>i<span style="color: #339933;">==</span>ifi<span style="color: #339933;">-&gt;</span>ifi_hlen<span style="color: #009900;">&#41;</span><span style="color: #339933;">?</span><span style="color: #ff0000;">&quot; &quot;</span><span style="color: #339933;">:</span><span style="color: #ff0000;">&quot;:&quot;</span><span style="color: #339933;">,</span> <span style="color: #339933;">*</span>ptr<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span><span style="color: #b1b100;">while</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">--</span>i<span style="color: #339933;">&gt;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
      <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
&nbsp;
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>sa<span style="color: #339933;">=</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">!=</span>NULL<span style="color: #009900;">&#41;</span>
      <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; IP addr: %s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>
             sock_ntop<span style="color: #009900;">&#40;</span>sa<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>sa<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>sa<span style="color: #339933;">=</span>ifi<span style="color: #339933;">-&gt;</span>ifi_brdaddr<span style="color: #009900;">&#41;</span><span style="color: #339933;">!=</span>NULL<span style="color: #009900;">&#41;</span>
      <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; broadcast addr: %s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>
             sock_ntop<span style="color: #009900;">&#40;</span>sa<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>sa<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>sa<span style="color: #339933;">=</span>ifi<span style="color: #339933;">-&gt;</span>ifi_dstaddr<span style="color: #009900;">&#41;</span><span style="color: #339933;">!=</span>NULL<span style="color: #009900;">&#41;</span>
      <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot; destnation addr: %s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>
             sock_ntop<span style="color: #009900;">&#40;</span>sa<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>sa<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
&nbsp;
  free_ifi_info<span style="color: #009900;">&#40;</span>ifihead<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
  exit<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>使用gcc net_if.c -o net_if -DIPV6编译，在IPV4模式下运行输出为：</p>
<blockquote><p>[root@localhost net_if]./net_if inet4 1<br />
lo:<UPLOOP><br />
IP addr: 127.0.0.1<br />
eth1:<UPBCASTMCAST><br />
IP addr: 192.168.1.2<br />
broadcast addr: 192.168.1.255<br />
eth0:<UPBCASTMCAST><br />
IP addr: 192.168.125.99<br />
broadcast addr: 192.168.125.255</p></blockquote>
<p>执行./net_if inet6 1在输出为空。</p>
<p>第二种方式是使用getifaddrs函数获取，需要包含ifaddrs.h头文件，这种方式可以获得IPV6地址，改写的《UNIX网络编程》中的get_ifi_info函数如下所示：</p>
<p>znet.h</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p617code7'); return false;">View Code</a> C</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p6177"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
</pre></td><td class="code" id="p617code7"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#ifndef __ZNET_H__</span>
<span style="color: #339933;">#define __ZNET_H__</span>
&nbsp;
<span style="color: #339933;">#include &lt;stdio.h&gt;</span>
<span style="color: #339933;">#include &lt;stdlib.h&gt;</span>
<span style="color: #339933;">#include &lt;string.h&gt;</span>
<span style="color: #339933;">#include &lt;sys/socket.h&gt;</span>
<span style="color: #339933;">#include &lt;arpa/inet.h&gt;</span>
<span style="color: #339933;">#include &lt;net/if.h&gt;</span>
<span style="color: #339933;">#include &lt;sys/ioctl.h&gt;</span>
<span style="color: #339933;">#include &lt;ifaddrs.h&gt;</span>
&nbsp;
<span style="color: #339933;">#define	IFI_NAME	16			/* same as IFNAMSIZ in &lt;net/if.h&gt; */</span>
<span style="color: #339933;">#define	IFI_HADDR	 8			/* allow for 64-bit EUI-64 in future */</span>
&nbsp;
<span style="color: #993333;">struct</span> ifi_info <span style="color: #009900;">&#123;</span>
  <span style="color: #993333;">char</span>    ifi_name<span style="color: #009900;">&#91;</span>IFI_NAME<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* interface name, null-terminated */</span>
  <span style="color: #993333;">short</span>   ifi_index<span style="color: #339933;">;</span>			<span style="color: #808080; font-style: italic;">/* interface index */</span>
  <span style="color: #993333;">short</span>   ifi_flags<span style="color: #339933;">;</span>			<span style="color: #808080; font-style: italic;">/* IFF_xxx constants from &lt;net/if.h&gt; */</span>
  <span style="color: #993333;">struct</span> sockaddr  <span style="color: #339933;">*</span>ifi_addr<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* primary address */</span>
  <span style="color: #993333;">struct</span> sockaddr  <span style="color: #339933;">*</span>ifi_brdaddr<span style="color: #339933;">;</span><span style="color: #808080; font-style: italic;">/* broadcast address */</span>
  <span style="color: #993333;">struct</span> ifi_info  <span style="color: #339933;">*</span>ifi_next<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* next of these structures */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #993333;">struct</span> ifi_info<span style="color: #339933;">*</span> get_ifi_info<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span><span style="color: #339933;">,</span> <span style="color: #993333;">int</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #993333;">void</span> free_ifi_info<span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> ifi_info <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #339933;">#endif</span></pre></td></tr></table></div>

<p>znet.c</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p617code8'); return false;">View Code</a> C</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p6178"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
</pre></td><td class="code" id="p617code8"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &quot;znet.h&quot;</span>
&nbsp;
<span style="color: #993333;">struct</span> ifi_info<span style="color: #339933;">*</span> get_ifi_info<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> family<span style="color: #339933;">,</span> <span style="color: #993333;">int</span> doaliases<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #993333;">struct</span> ifi_info		<span style="color: #339933;">*</span>ifi<span style="color: #339933;">,</span> <span style="color: #339933;">*</span>ifihead<span style="color: #339933;">,</span> <span style="color: #339933;">**</span>ifipnext<span style="color: #339933;">,*</span>p<span style="color: #339933;">;</span>
	<span style="color: #993333;">struct</span> sockaddr_in	<span style="color: #339933;">*</span>sinptr<span style="color: #339933;">;</span>
	<span style="color: #993333;">struct</span> sockaddr_in6	<span style="color: #339933;">*</span>sin6ptr<span style="color: #339933;">;</span>
	<span style="color: #993333;">struct</span> ifaddrs <span style="color: #339933;">*</span>ifas<span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//	char addr[128];</span>
	<span style="color: #993333;">int</span> sockfd<span style="color: #339933;">;</span>
&nbsp;
	ifihead <span style="color: #339933;">=</span> NULL<span style="color: #339933;">;</span>
	ifipnext <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span>ifihead<span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>getifaddrs<span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>ifas<span style="color: #009900;">&#41;</span><span style="color: #339933;">!=</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
		<span style="color: #b1b100;">return</span> <span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">;</span>ifas<span style="color: #339933;">!=</span>NULL<span style="color: #339933;">;</span>ifas<span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>ifas<span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ifa_next</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>	
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>ifas<span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ifa_addr</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>sa_family <span style="color: #339933;">!=</span> family<span style="color: #009900;">&#41;</span>
			<span style="color: #b1b100;">continue</span><span style="color: #339933;">;</span>	<span style="color: #666666; font-style: italic;">// ignore if not desired address family</span>
<span style="color: #808080; font-style: italic;">/*
		printf(&quot;%s %d\n&quot;,(*ifas).ifa_name,((*ifas).ifa_addr)-&gt;sa_family);
		if(((*ifas).ifa_addr)-&gt;sa_family!=AF_INET6)
			inet_ntop(AF_INET,&amp;(((struct sockaddr_in *)((*ifas).ifa_addr))-&gt;sin_addr),addr,sizeof(addr));
		else
			inet_ntop(AF_INET6,&amp;(((struct sockaddr_in6 *)((*ifas).ifa_addr))-&gt;sin6_addr),addr,sizeof(addr));
		printf(&quot;%s\t&quot;,addr);
		printf(&quot;\n&quot;);
*/</span>		
		ifi <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> ifi_info<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>calloc<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">,</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> ifi_info<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #339933;">*</span>ifipnext <span style="color: #339933;">=</span> ifi<span style="color: #339933;">;</span>			
		ifipnext <span style="color: #339933;">=</span> <span style="color: #339933;">&amp;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_next<span style="color: #339933;">;</span>	
&nbsp;
		ifi<span style="color: #339933;">-&gt;</span>ifi_flags <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>ifas<span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ifa_flags</span><span style="color: #339933;">;</span>
		memcpy<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_name<span style="color: #339933;">,</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>ifas<span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ifa_name</span><span style="color: #339933;">,</span> IFI_NAME<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		ifi<span style="color: #339933;">-&gt;</span>ifi_name<span style="color: #009900;">&#91;</span>IFI_NAME<span style="color: #339933;">-</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #ff0000;">'<span style="color: #006699; font-weight: bold;">\0</span>'</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">switch</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>ifas<span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ifa_addr</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>sa_family<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">case</span> AF_INET<span style="color: #339933;">:</span> 
				sinptr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>ifas<span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ifa_addr</span><span style="color: #339933;">;</span>
				ifi<span style="color: #339933;">-&gt;</span>ifi_addr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>calloc<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				memcpy<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #339933;">,</span> sinptr<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>			
<span style="color: #339933;">#ifdef	SIOCGIFBRDADDR</span>
				<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_flags <span style="color: #339933;">&amp;</span> IFF_BROADCAST<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
					sinptr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>ifas<span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ifa_broadaddr</span><span style="color: #339933;">;</span>
					ifi<span style="color: #339933;">-&gt;</span>ifi_brdaddr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>calloc<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
					memcpy<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_brdaddr<span style="color: #339933;">,</span> sinptr<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">#endif</span>
				<span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span> 
&nbsp;
			<span style="color: #b1b100;">case</span> AF_INET6<span style="color: #339933;">:</span> 
				sin6ptr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in6 <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">*</span>ifas<span style="color: #009900;">&#41;</span>.<span style="color: #202020;">ifa_addr</span><span style="color: #339933;">;</span>
				ifi<span style="color: #339933;">-&gt;</span>ifi_addr <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr<span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>calloc<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in6<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				memcpy<span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #339933;">,</span> sin6ptr<span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in6<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span> 
&nbsp;
			<span style="color: #b1b100;">default</span><span style="color: #339933;">:</span>
				<span style="color: #000000; font-weight: bold;">break</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>
	freeifaddrs<span style="color: #009900;">&#40;</span>ifas<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
&nbsp;
	<span style="color: #b1b100;">return</span><span style="color: #009900;">&#40;</span>ifihead<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> argc<span style="color: #339933;">,</span> <span style="color: #993333;">char</span> <span style="color: #339933;">*</span>argv<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #993333;">int</span> family<span style="color: #339933;">;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>argc<span style="color: #339933;">!=</span><span style="color: #0000dd;">2</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	    <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;usage: ./znet &lt;inet4 | inet 6&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	    exit<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>strcmp<span style="color: #009900;">&#40;</span>argv<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;inet4&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
		family <span style="color: #339933;">=</span> AF_INET<span style="color: #339933;">;</span>
	<span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>strcmp<span style="color: #009900;">&#40;</span>argv<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;inet6&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">==</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
		family <span style="color: #339933;">=</span>AF_INET6<span style="color: #339933;">;</span>
	<span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
    <a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;invalid &lt;address-family&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    exit<span style="color: #009900;">&#40;</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #993333;">char</span> addr<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">128</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #993333;">struct</span> ifi_info	<span style="color: #339933;">*</span>ifi<span style="color: #339933;">,</span> <span style="color: #339933;">*</span>ifihead<span style="color: #339933;">;</span>
	<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;name<span style="color: #000099; font-weight: bold;">\t</span>flag<span style="color: #000099; font-weight: bold;">\t</span>IP<span style="color: #000099; font-weight: bold;">\t</span><span style="color: #000099; font-weight: bold;">\t</span>broadcastaddr<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span>ifihead <span style="color: #339933;">=</span> ifi <span style="color: #339933;">=</span> get_ifi_info<span style="color: #009900;">&#40;</span>family<span style="color: #339933;">,</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> ifi <span style="color: #339933;">!=</span> NULL<span style="color: #339933;">;</span> ifi <span style="color: #339933;">=</span> ifi<span style="color: #339933;">-&gt;</span>ifi_next<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%s<span style="color: #000099; font-weight: bold;">\t</span>&quot;</span><span style="color: #339933;">,</span>ifi<span style="color: #339933;">-&gt;</span>ifi_name<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
		<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%d<span style="color: #000099; font-weight: bold;">\t</span>&quot;</span><span style="color: #339933;">,</span>ifi<span style="color: #339933;">-&gt;</span>ifi_flags<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>sa_family<span style="color: #339933;">!=</span>AF_INET6<span style="color: #009900;">&#41;</span>
			inet_ntop<span style="color: #009900;">&#40;</span>AF_INET<span style="color: #339933;">,&amp;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>sin_addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>addr<span style="color: #339933;">,</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>addr<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">else</span>
			inet_ntop<span style="color: #009900;">&#40;</span>AF_INET6<span style="color: #339933;">,&amp;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in6 <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>sin6_addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>addr<span style="color: #339933;">,</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>addr<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%s<span style="color: #000099; font-weight: bold;">\t</span>&quot;</span><span style="color: #339933;">,</span>addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">#ifdef	SIOCGIFBRDADDR</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_flags <span style="color: #339933;">&amp;</span> IFF_BROADCAST<span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>sa_family<span style="color: #339933;">!=</span>AF_INET6<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			inet_ntop<span style="color: #009900;">&#40;</span>AF_INET<span style="color: #339933;">,&amp;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> sockaddr_in <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#40;</span>ifi<span style="color: #339933;">-&gt;</span>ifi_brdaddr<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">-&gt;</span>sin_addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>addr<span style="color: #339933;">,</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>addr<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;%s<span style="color: #000099; font-weight: bold;">\t</span>&quot;</span><span style="color: #339933;">,</span>addr<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">#endif			</span>
		<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>+++++++++++++++++++++++++++++++++++++++++++<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>这段代码输出如下：</p>
<blockquote><p>[root@localhost net_if]./znet inet4<br />
name    flag    IP    broadcastaddr<br />
lo         73     127.0.0.1<br />
++++++++++++++++++++++++++++++<br />
eth1     4099   192.168.1.2     192.168.1.255<br />
++++++++++++++++++++++++++++++<br />
eth0     4163   192.168.125.99     192.168.125.255<br />
++++++++++++++++++++++++++++++<br />
[root@localhost net_if]./znet inet6<br />
name    flag    IP    broadcastaddr<br />
lo         73     ::1<br />
++++++++++++++++++++++++++++++<br />
eth1     4163   2001:250:1800:1::1<br />
++++++++++++++++++++++++++++++<br />
eth0     4163   2001:250:1888:1::1<br />
++++++++++++++++++++++++++++++</p></blockquote>


<p>关联文章:<ol><li><a href='http://www.vi1129.com/2010/03/sock_raw-dump/' rel='bookmark' title='Permanent Link: 使用原始套接字SOCK_RAW捕捉网络数据包并简单分析'>使用原始套接字SOCK_RAW捕捉网络数据包并简单分析</a></li>
<li><a href='http://www.vi1129.com/2010/02/node/' rel='bookmark' title='Permanent Link: 自写一则单链表小程序'>自写一则单链表小程序</a></li>
<li><a href='http://www.vi1129.com/2009/06/snmp-trap/' rel='bookmark' title='Permanent Link: 一种IP改变唤醒SNMP TRAP的实现源码'>一种IP改变唤醒SNMP TRAP的实现源码</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.vi1129.com/2010/01/ioctl-getifaddrs-ipv46/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ioctl对madwifi驱动网卡的SSID设置操作</title>
		<link>http://www.vi1129.com/2009/08/set-madwifi-ssid-with-ioctl/</link>
		<comments>http://www.vi1129.com/2009/08/set-madwifi-ssid-with-ioctl/#comments</comments>
		<pubDate>Tue, 04 Aug 2009 01:28:01 +0000</pubDate>
		<dc:creator>keykey</dc:creator>
				<category><![CDATA[C]]></category>
		<category><![CDATA[程序人生]]></category>
		<category><![CDATA[ioctl]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[madwifi]]></category>
		<category><![CDATA[ssid]]></category>

		<guid isPermaLink="false">http://www.vi1129.com/?p=263</guid>
		<description><![CDATA[<p>下面一则小程序实现了对无线网卡的SSID设置操作，网卡使用madwifi-hal-0.10.5.6驱动。其中wireless_copy.h头文件在madwifi/tools下,需要将这个头文件包含在这则小程序中。更多的其他诸如channel的设置，请参考http://gattaca.ru/~nikki/wrt54g/wpa/x/wpa_supplicant/driver_wext.c</p>
<p>以下为程序源码，与大家共享
get_set_ssid.c</p>

?View Code C1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include &#60;stdio.h&#62;
#include &#60;stdlib.h&#62;
#include &#60;sys/socket.h&#62;
#include &#60;string.h&#62;
#include &#34;wireless_copy.h&#34;
&#160;
int get_essid&#40;int sock, struct iwreq* wrq,char* ssid&#41;;
int set_essid&#40;int sock, struct iwreq* wrq,char* value&#41;;
&#160;
int main&#40;&#41;&#123;
&#160;
	struct iwreq wrq;
	int i,sock;
	char gInterfaceName&#91;16&#93;;
	char *ssid=&#40;char *&#41;malloc&#40;sizeof&#40;char&#41;*&#40;32+1&#41;&#41;;
	char *set_ssid=&#34;testssid&#34;;
&#160;
	memset&#40;ssid,0,sizeof&#40;ssid&#41;&#41;;
	memset&#40;gInterfaceName, 0, sizeof&#40;gInterfaceName&#41;&#41;;
	strcat&#40;gInterfaceName,&#34;ath0&#34;&#41;;
&#160;
	sock = socket&#40;AF_INET, SOCK_DGRAM, 0&#41;;
		if &#40;sock &#60; 0&#41; 
		&#123;
			printf&#40;&#34;Error Creating Socket for ioctl\n&#34;&#41;; 
			return 0;
		&#125;
	memset&#40;&#38;wrq, 0, sizeof&#40;wrq&#41;&#41;;
	strncpy&#40;wrq.ifr_name, gInterfaceName, IFNAMSIZ&#41;;
//get ssid
	get_essid&#40;sock, &#38;wrq,ssid&#41;;
&#160;
	printf&#40;&#34;old ssid:%s\n&#34;,wrq.u.essid.pointer&#41;;
	free&#40;ssid&#41;;
//reset struct
	memset&#40;&#38;wrq, 0, sizeof&#40;wrq&#41;&#41;;
	strncpy&#40;wrq.ifr_name, gInterfaceName, <p><a href="http://www.vi1129.com/2009/08/set-madwifi-ssid-with-ioctl/">继续阅读</a></p>


关联文章:<ol><li><a href='http://www.vi1129.com/2010/01/ioctl-getifaddrs-ipv46/' rel='bookmark' title='Permanent Link: ioctl及getifaddrs读取IPv4,IPv6网卡信息'>ioctl及getifaddrs读取IPv4,IPv6网卡信息</a></li>
<li><a href='http://www.vi1129.com/2010/03/sock_raw-dump/' rel='bookmark' title='Permanent Link: 使用原始套接字SOCK_RAW捕捉网络数据包并简单分析'>使用原始套接字SOCK_RAW捕捉网络数据包并简单分析</a></li>
<li><a href='http://www.vi1129.com/2009/11/linux-md5/' rel='bookmark' title='Permanent Link: MD5应用的一点理解及Linux实现源码'>MD5应用的一点理解及Linux实现源码</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>下面一则小程序实现了对无线网卡的SSID设置操作，网卡使用madwifi-hal-0.10.5.6驱动。其中wireless_copy.h头文件在madwifi/tools下,需要将这个头文件包含在这则小程序中。更多的其他诸如channel的设置，请参考<a href="http://gattaca.ru/~nikki/wrt54g/wpa/x/wpa_supplicant/driver_wext.c">http://gattaca.ru/~nikki/wrt54g/wpa/x/wpa_supplicant/driver_wext.c</a></p>
<p>以下为程序源码，与大家共享<br />
get_set_ssid.c</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p263code11'); return false;">View Code</a> C</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p26311"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
</pre></td><td class="code" id="p263code11"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &lt;stdio.h&gt;</span>
<span style="color: #339933;">#include &lt;stdlib.h&gt;</span>
<span style="color: #339933;">#include &lt;sys/socket.h&gt;</span>
<span style="color: #339933;">#include &lt;string.h&gt;</span>
<span style="color: #339933;">#include &quot;wireless_copy.h&quot;</span>
&nbsp;
<span style="color: #993333;">int</span> get_essid<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> sock<span style="color: #339933;">,</span> <span style="color: #993333;">struct</span> iwreq<span style="color: #339933;">*</span> wrq<span style="color: #339933;">,</span><span style="color: #993333;">char</span><span style="color: #339933;">*</span> ssid<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #993333;">int</span> set_essid<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> sock<span style="color: #339933;">,</span> <span style="color: #993333;">struct</span> iwreq<span style="color: #339933;">*</span> wrq<span style="color: #339933;">,</span><span style="color: #993333;">char</span><span style="color: #339933;">*</span> value<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #993333;">int</span> main<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
	<span style="color: #993333;">struct</span> iwreq wrq<span style="color: #339933;">;</span>
	<span style="color: #993333;">int</span> i<span style="color: #339933;">,</span>sock<span style="color: #339933;">;</span>
	<span style="color: #993333;">char</span> gInterfaceName<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">16</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #993333;">char</span> <span style="color: #339933;">*</span>ssid<span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">char</span> <span style="color: #339933;">*</span><span style="color: #009900;">&#41;</span>malloc<span style="color: #009900;">&#40;</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #993333;">char</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">*</span><span style="color: #009900;">&#40;</span><span style="color: #0000dd;">32</span><span style="color: #339933;">+</span><span style="color: #0000dd;">1</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #993333;">char</span> <span style="color: #339933;">*</span>set_ssid<span style="color: #339933;">=</span><span style="color: #ff0000;">&quot;testssid&quot;</span><span style="color: #339933;">;</span>
&nbsp;
	memset<span style="color: #009900;">&#40;</span>ssid<span style="color: #339933;">,</span><span style="color: #0000dd;">0</span><span style="color: #339933;">,</span><span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>ssid<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	memset<span style="color: #009900;">&#40;</span>gInterfaceName<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>gInterfaceName<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	strcat<span style="color: #009900;">&#40;</span>gInterfaceName<span style="color: #339933;">,</span><span style="color: #ff0000;">&quot;ath0&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	sock <span style="color: #339933;">=</span> socket<span style="color: #009900;">&#40;</span>AF_INET<span style="color: #339933;">,</span> SOCK_DGRAM<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span>sock <span style="color: #339933;">&lt;</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span> 
		<span style="color: #009900;">&#123;</span>
			<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Error Creating Socket for ioctl<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
			<span style="color: #b1b100;">return</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
	memset<span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>wrq<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>wrq<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	strncpy<span style="color: #009900;">&#40;</span>wrq.<span style="color: #202020;">ifr_name</span><span style="color: #339933;">,</span> gInterfaceName<span style="color: #339933;">,</span> IFNAMSIZ<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//get ssid</span>
	get_essid<span style="color: #009900;">&#40;</span>sock<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>wrq<span style="color: #339933;">,</span>ssid<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;old ssid:%s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>wrq.<span style="color: #202020;">u</span>.<span style="color: #202020;">essid</span>.<span style="color: #202020;">pointer</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	free<span style="color: #009900;">&#40;</span>ssid<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//reset struct</span>
	memset<span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>wrq<span style="color: #339933;">,</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">,</span> <span style="color: #993333;">sizeof</span><span style="color: #009900;">&#40;</span>wrq<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	strncpy<span style="color: #009900;">&#40;</span>wrq.<span style="color: #202020;">ifr_name</span><span style="color: #339933;">,</span> gInterfaceName<span style="color: #339933;">,</span> IFNAMSIZ<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//set ssid	</span>
	set_essid<span style="color: #009900;">&#40;</span>sock<span style="color: #339933;">,</span> <span style="color: #339933;">&amp;</span>wrq<span style="color: #339933;">,</span>set_ssid<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;new ssid:%s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span>wrq.<span style="color: #202020;">u</span>.<span style="color: #202020;">essid</span>.<span style="color: #202020;">pointer</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
&nbsp;
<span style="color: #993333;">int</span> get_essid<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> sock<span style="color: #339933;">,</span> <span style="color: #993333;">struct</span> iwreq<span style="color: #339933;">*</span> wrq<span style="color: #339933;">,</span><span style="color: #993333;">char</span><span style="color: #339933;">*</span> ssid<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
&nbsp;
	wrq<span style="color: #339933;">-&gt;</span>u.<span style="color: #202020;">essid</span>.<span style="color: #202020;">length</span><span style="color: #339933;">=</span><span style="color: #0000dd;">32</span><span style="color: #339933;">;</span>
	wrq<span style="color: #339933;">-&gt;</span>u.<span style="color: #202020;">essid</span>.<span style="color: #202020;">pointer</span><span style="color: #339933;">=</span><span style="color: #009900;">&#40;</span>caddr_t<span style="color: #009900;">&#41;</span> ssid<span style="color: #339933;">;</span>
      	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>ioctl<span style="color: #009900;">&#40;</span>sock<span style="color: #339933;">,</span> SIOCGIWESSID<span style="color: #339933;">,</span> wrq<span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		perror<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Ioctl error&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		free<span style="color: #009900;">&#40;</span>ssid<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">return</span><span style="color: #009900;">&#40;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>	
&nbsp;
	<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>ssid from function get_ssid: %s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> wrq<span style="color: #339933;">-&gt;</span>u.<span style="color: #202020;">essid</span>.<span style="color: #202020;">pointer</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #993333;">int</span> set_essid<span style="color: #009900;">&#40;</span><span style="color: #993333;">int</span> sock<span style="color: #339933;">,</span> <span style="color: #993333;">struct</span> iwreq<span style="color: #339933;">*</span> wrq<span style="color: #339933;">,</span><span style="color: #993333;">char</span><span style="color: #339933;">*</span> value<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#123;</span>
	wrq<span style="color: #339933;">-&gt;</span>u.<span style="color: #202020;">essid</span>.<span style="color: #202020;">pointer</span><span style="color: #339933;">=</span>value<span style="color: #339933;">;</span>
	wrq<span style="color: #339933;">-&gt;</span>u.<span style="color: #202020;">essid</span>.<span style="color: #202020;">length</span><span style="color: #339933;">=</span>strlen<span style="color: #009900;">&#40;</span>value<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	wrq<span style="color: #339933;">-&gt;</span>u.<span style="color: #202020;">essid</span>.<span style="color: #202020;">flags</span><span style="color: #339933;">=</span><span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
      	<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span>ioctl<span style="color: #009900;">&#40;</span>sock<span style="color: #339933;">,</span> SIOCSIWESSID<span style="color: #339933;">,</span> wrq<span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> <span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#123;</span>
		perror<span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;Ioctl error&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">return</span><span style="color: #009900;">&#40;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>	
&nbsp;
	<a href="http://www.opengroup.org/onlinepubs/009695399/functions/printf.html"><span style="color: #000066;">printf</span></a><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>essid from function set_essid: %s<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">,</span> wrq<span style="color: #339933;">-&gt;</span>u.<span style="color: #202020;">essid</span>.<span style="color: #202020;">pointer</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">return</span> <span style="color: #0000dd;">1</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p><span id="more-263"></span><br />
wireless_copy.h</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p263code12'); return false;">View Code</a> C</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p26312"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
</pre></td><td class="code" id="p263code12"><pre class="c" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* This is based on Linux Wireless Extensions header file from WIRELESS_EXT 18.
 * I have just removed kernel related headers and added some typedefs etc. to
 * make this easier to include into user space programs.
 * Jouni Malinen, 2005-03-12.
 *
 * $Id: wireless_copy.h 1426 2006-02-01 20:07:11Z mrenzmann $
 */</span>
&nbsp;
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 * This file define a set of standard wireless extensions
 *
 * Version :	19	18.3.05
 *
 * Authors :	Jean Tourrilhes - HPL - &lt;jt@hpl.hp.com&gt;
 * Copyright (c) 1997-2005 Jean Tourrilhes, All Rights Reserved.
 */</span>
&nbsp;
<span style="color: #339933;">#ifndef _LINUX_WIRELESS_H</span>
<span style="color: #339933;">#define _LINUX_WIRELESS_H</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/************************** DOCUMENTATION **************************/</span>
<span style="color: #808080; font-style: italic;">/*
 * Initial APIs (1996 -&gt; onward) :
 * -----------------------------
 * Basically, the wireless extensions are for now a set of standard ioctl
 * call + /proc/net/wireless
 *
 * The entry /proc/net/wireless give statistics and information on the
 * driver.
 * This is better than having each driver having its entry because
 * its centralised and we may remove the driver module safely.
 *
 * Ioctl are used to configure the driver and issue commands.  This is
 * better than command line options of insmod because we may want to
 * change dynamically (while the driver is running) some parameters.
 *
 * The ioctl mechanimsm are copied from standard devices ioctl.
 * We have the list of command plus a structure descibing the
 * data exchanged...
 * Note that to add these ioctl, I was obliged to modify :
 *	# net/core/dev.c (two place + add include)
 *	# net/ipv4/af_inet.c (one place + add include)
 *
 * /proc/net/wireless is a copy of /proc/net/dev.
 * We have a structure for data passed from the driver to /proc/net/wireless
 * Too add this, I've modified :
 *	# net/core/dev.c (two other places)
 *	# include/linux/netdevice.h (one place)
 *	# include/linux/proc_fs.h (one place)
 *
 * New driver API (2002 -&gt; onward) :
 * -------------------------------
 * This file is only concerned with the user space API and common definitions.
 * The new driver API is defined and documented in :
 *	# include/net/iw_handler.h
 *
 * Note as well that /proc/net/wireless implementation has now moved in :
 *	# net/core/wireless.c
 *
 * Wireless Events (2002 -&gt; onward) :
 * --------------------------------
 * Events are defined at the end of this file, and implemented in :
 *	# net/core/wireless.c
 *
 * Other comments :
 * --------------
 * Do not add here things that are redundant with other mechanisms
 * (drivers init, ifconfig, /proc/net/dev, ...) and with are not
 * wireless specific.
 *
 * These wireless extensions are not magic : each driver has to provide
 * support for them...
 *
 * IMPORTANT NOTE : As everything in the kernel, this is very much a
 * work in progress. Contact me if you have ideas of improvements...
 */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/***************************** INCLUDES *****************************/</span>
&nbsp;
 <span style="color: #808080; font-style: italic;">/* jkm - replaced linux headers with C library headers, added typedefs */</span>
<span style="color: #339933;">#if 0</span>
<span style="color: #808080; font-style: italic;">/* To minimise problems in user space, I might remove those headers
 * at some point. Jean II */</span>
<span style="color: #339933;">#include &lt;linux/types.h&gt;		/* for &quot;caddr_t&quot; et al		*/</span>
<span style="color: #339933;">#include &lt;linux/socket.h&gt;		/* for &quot;struct sockaddr&quot; et al	*/</span>
<span style="color: #339933;">#include &lt;linux/if.h&gt;			/* for IFNAMSIZ and co... */</span>
<span style="color: #339933;">#else</span>
<span style="color: #339933;">#include &lt;sys/types.h&gt;</span>
<span style="color: #339933;">#include &lt;net/if.h&gt;</span>
<span style="color: #993333;">typedef</span> __uint32_t __u32<span style="color: #339933;">;</span>
<span style="color: #993333;">typedef</span> __int32_t __s32<span style="color: #339933;">;</span>
<span style="color: #993333;">typedef</span> __uint16_t __u16<span style="color: #339933;">;</span>
<span style="color: #993333;">typedef</span> __int16_t __s16<span style="color: #339933;">;</span>
<span style="color: #993333;">typedef</span> __uint8_t __u8<span style="color: #339933;">;</span>
<span style="color: #339933;">#ifndef __user</span>
<span style="color: #339933;">#define __user</span>
<span style="color: #339933;">#endif /* __user */</span>
<span style="color: #339933;">#endif</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/***************************** VERSION *****************************/</span>
<span style="color: #808080; font-style: italic;">/*
 * This constant is used to know the availability of the wireless
 * extensions and to know which version of wireless extensions it is
 * (there is some stuff that will be added in the future...)
 * I just plan to increment with each new version.
 */</span>
<span style="color: #339933;">#define WIRELESS_EXT	19</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 * Changes :
 *
 * V2 to V3
 * --------
 *	Alan Cox start some incompatibles changes. I've integrated a bit more.
 *	- Encryption renamed to Encode to avoid US regulation problems
 *	- Frequency changed from float to struct to avoid problems on old 386
 *
 * V3 to V4
 * --------
 *	- Add sensitivity
 *
 * V4 to V5
 * --------
 *	- Missing encoding definitions in range
 *	- Access points stuff
 *
 * V5 to V6
 * --------
 *	- 802.11 support (ESSID ioctls)
 *
 * V6 to V7
 * --------
 *	- define IW_ESSID_MAX_SIZE and IW_MAX_AP
 *
 * V7 to V8
 * --------
 *	- Changed my e-mail address
 *	- More 802.11 support (nickname, rate, rts, frag)
 *	- List index in frequencies
 *
 * V8 to V9
 * --------
 *	- Support for 'mode of operation' (ad-hoc, managed...)
 *	- Support for unicast and multicast power saving
 *	- Change encoding to support larger tokens (&gt;64 bits)
 *	- Updated iw_params (disable, flags) and use it for NWID
 *	- Extracted iw_point from iwreq for clarity
 *
 * V9 to V10
 * ---------
 *	- Add PM capability to range structure
 *	- Add PM modifier : MAX/MIN/RELATIVE
 *	- Add encoding option : IW_ENCODE_NOKEY
 *	- Add TxPower ioctls (work like TxRate)
 *
 * V10 to V11
 * ----------
 *	- Add WE version in range (help backward/forward compatibility)
 *	- Add retry ioctls (work like PM)
 *
 * V11 to V12
 * ----------
 *	- Add SIOCSIWSTATS to get /proc/net/wireless programatically
 *	- Add DEV PRIVATE IOCTL to avoid collisions in SIOCDEVPRIVATE space
 *	- Add new statistics (frag, retry, beacon)
 *	- Add average quality (for user space calibration)
 *
 * V12 to V13
 * ----------
 *	- Document creation of new driver API.
 *	- Extract union iwreq_data from struct iwreq (for new driver API).
 *	- Rename SIOCSIWNAME as SIOCSIWCOMMIT
 *
 * V13 to V14
 * ----------
 *	- Wireless Events support : define struct iw_event
 *	- Define additional specific event numbers
 *	- Add &quot;addr&quot; and &quot;param&quot; fields in union iwreq_data
 *	- AP scanning stuff (SIOCSIWSCAN and friends)
 *
 * V14 to V15
 * ----------
 *	- Add IW_PRIV_TYPE_ADDR for struct sockaddr private arg
 *	- Make struct iw_freq signed (both m &amp; e), add explicit padding
 *	- Add IWEVCUSTOM for driver specific event/scanning token
 *	- Add IW_MAX_GET_SPY for driver returning a lot of addresses
 *	- Add IW_TXPOW_RANGE for range of Tx Powers
 *	- Add IWEVREGISTERED &amp; IWEVEXPIRED events for Access Points
 *	- Add IW_MODE_MONITOR for passive monitor
 *
 * V15 to V16
 * ----------
 *	- Increase the number of bitrates in iw_range to 32 (for 802.11g)
 *	- Increase the number of frequencies in iw_range to 32 (for 802.11b+a)
 *	- Reshuffle struct iw_range for increases, add filler
 *	- Increase IW_MAX_AP to 64 for driver returning a lot of addresses
 *	- Remove IW_MAX_GET_SPY because conflict with enhanced spy support
 *	- Add SIOCSIWTHRSPY/SIOCGIWTHRSPY and &quot;struct iw_thrspy&quot;
 *	- Add IW_ENCODE_TEMP and iw_range-&gt;encoding_login_index
 *
 * V16 to V17
 * ----------
 *	- Add flags to frequency -&gt; auto/fixed
 *	- Document (struct iw_quality *)-&gt;updated, add new flags (INVALID)
 *	- Wireless Event capability in struct iw_range
 *	- Add support for relative TxPower (yick !)
 *
 * V17 to V18 (From Jouni Malinen &lt;jkmaline@cc.hut.fi&gt;)
 * ----------
 *	- Add support for WPA/WPA2
 *	- Add extended encoding configuration (SIOCSIWENCODEEXT and
 *	  SIOCGIWENCODEEXT)
 *	- Add SIOCSIWGENIE/SIOCGIWGENIE
 *	- Add SIOCSIWMLME
 *	- Add SIOCSIWPMKSA
 *	- Add struct iw_range bit field for supported encoding capabilities
 *	- Add optional scan request parameters for SIOCSIWSCAN
 *	- Add SIOCSIWAUTH/SIOCGIWAUTH for setting authentication and WPA
 *	  related parameters (extensible up to 4096 parameter values)
 *	- Add wireless events: IWEVGENIE, IWEVMICHAELMICFAILURE,
 *	  IWEVASSOCREQIE, IWEVASSOCRESPIE, IWEVPMKIDCAND
 *
 * V18 to V19
 * ----------
 *	- Remove (struct iw_point *)-&gt;pointer from events and streams
 *	- Remove header includes to help user space
 *	- Increase IW_ENCODING_TOKEN_MAX from 32 to 64
 *	- Add IW_QUAL_ALL_UPDATED and IW_QUAL_ALL_INVALID macros
 *	- Add explicit flag to tell stats are in dBm : IW_QUAL_DBM
 *	- Add IW_IOCTL_IDX() and IW_EVENT_IDX() macros
 */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/**************************** CONSTANTS ****************************/</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* -------------------------- IOCTL LIST -------------------------- */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Wireless Identification */</span>
<span style="color: #339933;">#define SIOCSIWCOMMIT	0x8B00		/* Commit pending changes to driver */</span>
<span style="color: #339933;">#define SIOCGIWNAME	0x8B01		/* get name == wireless protocol */</span>
<span style="color: #808080; font-style: italic;">/* SIOCGIWNAME is used to verify the presence of Wireless Extensions.
 * Common values : &quot;IEEE 802.11-DS&quot;, &quot;IEEE 802.11-FH&quot;, &quot;IEEE 802.11b&quot;...
 * Don't put the name of your driver there, it's useless. */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Basic operations */</span>
<span style="color: #339933;">#define SIOCSIWNWID	0x8B02		/* set network id (pre-802.11) */</span>
<span style="color: #339933;">#define SIOCGIWNWID	0x8B03		/* get network id (the cell) */</span>
<span style="color: #339933;">#define SIOCSIWFREQ	0x8B04		/* set channel/frequency (Hz) */</span>
<span style="color: #339933;">#define SIOCGIWFREQ	0x8B05		/* get channel/frequency (Hz) */</span>
<span style="color: #339933;">#define SIOCSIWMODE	0x8B06		/* set operation mode */</span>
<span style="color: #339933;">#define SIOCGIWMODE	0x8B07		/* get operation mode */</span>
<span style="color: #339933;">#define SIOCSIWSENS	0x8B08		/* set sensitivity (dBm) */</span>
<span style="color: #339933;">#define SIOCGIWSENS	0x8B09		/* get sensitivity (dBm) */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Informative stuff */</span>
<span style="color: #339933;">#define SIOCSIWRANGE	0x8B0A		/* Unused */</span>
<span style="color: #339933;">#define SIOCGIWRANGE	0x8B0B		/* Get range of parameters */</span>
<span style="color: #339933;">#define SIOCSIWPRIV	0x8B0C		/* Unused */</span>
<span style="color: #339933;">#define SIOCGIWPRIV	0x8B0D		/* get private ioctl interface info */</span>
<span style="color: #339933;">#define SIOCSIWSTATS	0x8B0E		/* Unused */</span>
<span style="color: #339933;">#define SIOCGIWSTATS	0x8B0F		/* Get /proc/net/wireless stats */</span>
<span style="color: #808080; font-style: italic;">/* SIOCGIWSTATS is strictly used between user space and the kernel, and
 * is never passed to the driver (i.e. the driver will never see it). */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Spy support (statistics per MAC address - used for Mobile IP support) */</span>
<span style="color: #339933;">#define SIOCSIWSPY	0x8B10		/* set spy addresses */</span>
<span style="color: #339933;">#define SIOCGIWSPY	0x8B11		/* get spy info (quality of link) */</span>
<span style="color: #339933;">#define SIOCSIWTHRSPY	0x8B12		/* set spy threshold (spy event) */</span>
<span style="color: #339933;">#define SIOCGIWTHRSPY	0x8B13		/* get spy threshold */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Access Point manipulation */</span>
<span style="color: #339933;">#define SIOCSIWAP	0x8B14		/* set access point MAC addresses */</span>
<span style="color: #339933;">#define SIOCGIWAP	0x8B15		/* get access point MAC addresses */</span>
<span style="color: #339933;">#define SIOCGIWAPLIST	0x8B17		/* Deprecated in favor of scanning */</span>
<span style="color: #339933;">#define SIOCSIWSCAN	0x8B18		/* trigger scanning (list cells) */</span>
<span style="color: #339933;">#define SIOCGIWSCAN	0x8B19		/* get scanning results */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* 802.11 specific support */</span>
<span style="color: #339933;">#define SIOCSIWESSID	0x8B1A		/* set ESSID (network name) */</span>
<span style="color: #339933;">#define SIOCGIWESSID	0x8B1B		/* get ESSID */</span>
<span style="color: #339933;">#define SIOCSIWNICKN	0x8B1C		/* set node name/nickname */</span>
<span style="color: #339933;">#define SIOCGIWNICKN	0x8B1D		/* get node name/nickname */</span>
<span style="color: #808080; font-style: italic;">/* As the ESSID and NICKN are strings up to 32 bytes long, it doesn't fit
 * within the 'iwreq' structure, so we need to use the 'data' member to
 * point to a string in user space, like it is done for RANGE... */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Other parameters useful in 802.11 and some other devices */</span>
<span style="color: #339933;">#define SIOCSIWRATE	0x8B20		/* set default bit rate (bps) */</span>
<span style="color: #339933;">#define SIOCGIWRATE	0x8B21		/* get default bit rate (bps) */</span>
<span style="color: #339933;">#define SIOCSIWRTS	0x8B22		/* set RTS/CTS threshold (bytes) */</span>
<span style="color: #339933;">#define SIOCGIWRTS	0x8B23		/* get RTS/CTS threshold (bytes) */</span>
<span style="color: #339933;">#define SIOCSIWFRAG	0x8B24		/* set fragmentation thr (bytes) */</span>
<span style="color: #339933;">#define SIOCGIWFRAG	0x8B25		/* get fragmentation thr (bytes) */</span>
<span style="color: #339933;">#define SIOCSIWTXPOW	0x8B26		/* set transmit power (dBm) */</span>
<span style="color: #339933;">#define SIOCGIWTXPOW	0x8B27		/* get transmit power (dBm) */</span>
<span style="color: #339933;">#define SIOCSIWRETRY	0x8B28		/* set retry limits and lifetime */</span>
<span style="color: #339933;">#define SIOCGIWRETRY	0x8B29		/* get retry limits and lifetime */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Encoding stuff (scrambling, hardware security, WEP...) */</span>
<span style="color: #339933;">#define SIOCSIWENCODE	0x8B2A		/* set encoding token &amp; mode */</span>
<span style="color: #339933;">#define SIOCGIWENCODE	0x8B2B		/* get encoding token &amp; mode */</span>
<span style="color: #808080; font-style: italic;">/* Power saving stuff (power management, unicast and multicast) */</span>
<span style="color: #339933;">#define SIOCSIWPOWER	0x8B2C		/* set Power Management settings */</span>
<span style="color: #339933;">#define SIOCGIWPOWER	0x8B2D		/* get Power Management settings */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* WPA : Generic IEEE 802.11 informatiom element (e.g., for WPA/RSN/WMM).
 * This ioctl uses struct iw_point and data buffer that includes IE id and len
 * fields. More than one IE may be included in the request. Setting the generic
 * IE to empty buffer (len=0) removes the generic IE from the driver. Drivers
 * are allowed to generate their own WPA/RSN IEs, but in these cases, drivers
 * are required to report the used IE as a wireless event, e.g., when
 * associating with an AP. */</span>
<span style="color: #339933;">#define SIOCSIWGENIE	0x8B30		/* set generic IE */</span>
<span style="color: #339933;">#define SIOCGIWGENIE	0x8B31		/* get generic IE */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* WPA : IEEE 802.11 MLME requests */</span>
<span style="color: #339933;">#define SIOCSIWMLME	0x8B16		/* request MLME operation; uses</span>
					 <span style="color: #339933;">*</span> <span style="color: #993333;">struct</span> iw_mlme <span style="color: #339933;">*/</span>
<span style="color: #808080; font-style: italic;">/* WPA : Authentication mode parameters */</span>
<span style="color: #339933;">#define SIOCSIWAUTH	0x8B32		/* set authentication mode params */</span>
<span style="color: #339933;">#define SIOCGIWAUTH	0x8B33		/* get authentication mode params */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* WPA : Extended version of encoding configuration */</span>
<span style="color: #339933;">#define SIOCSIWENCODEEXT 0x8B34		/* set encoding token &amp; mode */</span>
<span style="color: #339933;">#define SIOCGIWENCODEEXT 0x8B35		/* get encoding token &amp; mode */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* WPA2 : PMKSA cache management */</span>
<span style="color: #339933;">#define SIOCSIWPMKSA	0x8B36		/* PMKSA cache operation */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* -------------------- DEV PRIVATE IOCTL LIST -------------------- */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* These 32 ioctl are wireless device private, for 16 commands.
 * Each driver is free to use them for whatever purpose it chooses,
 * however the driver *must* export the description of those ioctls
 * with SIOCGIWPRIV and *must* use arguments as defined below.
 * If you don't follow those rules, DaveM is going to hate you (reason :
 * it make mixed 32/64bit operation impossible).
 */</span>
<span style="color: #339933;">#define SIOCIWFIRSTPRIV	0x8BE0</span>
<span style="color: #339933;">#define SIOCIWLASTPRIV	0x8BFF</span>
<span style="color: #808080; font-style: italic;">/* Previously, we were using SIOCDEVPRIVATE, but we now have our
 * separate range because of collisions with other tools such as
 * 'mii-tool'.
 * We now have 32 commands, so a bit more space ;-).
 * Also, all 'odd' commands are only usable by root and don't return the
 * content of ifr/iwr to user (but you are not obliged to use the set/get
 * convention, just use every other two command). More details in iwpriv.c.
 * And I repeat : you are not forced to use them with iwpriv, but you
 * must be compliant with it.
 */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* ------------------------- IOCTL STUFF ------------------------- */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* The first and the last (range) */</span>
<span style="color: #339933;">#define SIOCIWFIRST	0x8B00</span>
<span style="color: #339933;">#define SIOCIWLAST	SIOCIWLASTPRIV		/* 0x8BFF */</span>
<span style="color: #339933;">#define IW_IOCTL_IDX(cmd)	((cmd) - SIOCIWFIRST)</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Even : get (world access), odd : set (root access) */</span>
<span style="color: #339933;">#define IW_IS_SET(cmd)	(!((cmd) &amp; 0x1))</span>
<span style="color: #339933;">#define IW_IS_GET(cmd)	((cmd) &amp; 0x1)</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* ----------------------- WIRELESS EVENTS ----------------------- */</span>
<span style="color: #808080; font-style: italic;">/* Those are *NOT* ioctls, do not issue request on them !!! */</span>
<span style="color: #808080; font-style: italic;">/* Most events use the same identifier as ioctl requests */</span>
&nbsp;
<span style="color: #339933;">#define IWEVTXDROP	0x8C00		/* Packet dropped to excessive retry */</span>
<span style="color: #339933;">#define IWEVQUAL	0x8C01		/* Quality part of statistics (scan) */</span>
<span style="color: #339933;">#define IWEVCUSTOM	0x8C02		/* Driver specific ascii string */</span>
<span style="color: #339933;">#define IWEVREGISTERED	0x8C03		/* Discovered a new node (AP mode) */</span>
<span style="color: #339933;">#define IWEVEXPIRED	0x8C04		/* Expired a node (AP mode) */</span>
<span style="color: #339933;">#define IWEVGENIE	0x8C05		/* Generic IE (WPA, RSN, WMM, ..)</span>
					 <span style="color: #339933;">*</span> <span style="color: #009900;">&#40;</span>scan results<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> This includes id and
					 <span style="color: #339933;">*</span> length fields. <span style="color: #202020;">One</span> IWEVGENIE may
					 <span style="color: #339933;">*</span> contain more than one IE. <span style="color: #202020;">Scan</span>
					 <span style="color: #339933;">*</span> results may contain one or more
					 <span style="color: #339933;">*</span> IWEVGENIE events. <span style="color: #339933;">*/</span>
<span style="color: #339933;">#define IWEVMICHAELMICFAILURE 0x8C06	/* Michael MIC failure</span>
					 <span style="color: #339933;">*</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> iw_michaelmicfailure<span style="color: #009900;">&#41;</span>
					 <span style="color: #339933;">*/</span>
<span style="color: #339933;">#define IWEVASSOCREQIE	0x8C07		/* IEs used in (Re)Association Request.</span>
					 <span style="color: #339933;">*</span> The data includes id and length
					 <span style="color: #339933;">*</span> fields and may contain more than one
					 <span style="color: #339933;">*</span> IE. <span style="color: #202020;">This</span> event is required in
					 <span style="color: #339933;">*</span> Managed mode <span style="color: #b1b100;">if</span> the driver
					 <span style="color: #339933;">*</span> generates its own WPA<span style="color: #339933;">/</span>RSN IE. <span style="color: #202020;">This</span>
					 <span style="color: #339933;">*</span> should be sent just before
					 <span style="color: #339933;">*</span> IWEVREGISTERED event <span style="color: #b1b100;">for</span> the
					 <span style="color: #339933;">*</span> association. <span style="color: #339933;">*/</span>
<span style="color: #339933;">#define IWEVASSOCRESPIE	0x8C08		/* IEs used in (Re)Association</span>
					 <span style="color: #339933;">*</span> Response. <span style="color: #202020;">The</span> data includes id and
					 <span style="color: #339933;">*</span> length fields and may contain more
					 <span style="color: #339933;">*</span> than one IE. <span style="color: #202020;">This</span> may be sent
					 <span style="color: #339933;">*</span> between IWEVASSOCREQIE and
					 <span style="color: #339933;">*</span> IWEVREGISTERED events <span style="color: #b1b100;">for</span> the
					 <span style="color: #339933;">*</span> association. <span style="color: #339933;">*/</span>
<span style="color: #339933;">#define IWEVPMKIDCAND	0x8C09		/* PMKID candidate for RSN</span>
					 <span style="color: #339933;">*</span> pre<span style="color: #339933;">-</span>authentication
					 <span style="color: #339933;">*</span> <span style="color: #009900;">&#40;</span><span style="color: #993333;">struct</span> iw_pmkid_cand<span style="color: #009900;">&#41;</span> <span style="color: #339933;">*/</span>
&nbsp;
<span style="color: #339933;">#define IWEVFIRST	0x8C00</span>
<span style="color: #339933;">#define IW_EVENT_IDX(cmd)	((cmd) - IWEVFIRST)</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* ------------------------- PRIVATE INFO ------------------------- */</span>
<span style="color: #808080; font-style: italic;">/*
 * The following is used with SIOCGIWPRIV. It allow a driver to define
 * the interface (name, type of data) for its private ioctl.
 * Privates ioctl are SIOCIWFIRSTPRIV -&gt; SIOCIWLASTPRIV
 */</span>
&nbsp;
<span style="color: #339933;">#define IW_PRIV_TYPE_MASK	0x7000	/* Type of arguments */</span>
<span style="color: #339933;">#define IW_PRIV_TYPE_NONE	0x0000</span>
<span style="color: #339933;">#define IW_PRIV_TYPE_BYTE	0x1000	/* Char as number */</span>
<span style="color: #339933;">#define IW_PRIV_TYPE_CHAR	0x2000	/* Char as character */</span>
<span style="color: #339933;">#define IW_PRIV_TYPE_INT	0x4000	/* 32 bits int */</span>
<span style="color: #339933;">#define IW_PRIV_TYPE_FLOAT	0x5000	/* struct iw_freq */</span>
<span style="color: #339933;">#define IW_PRIV_TYPE_ADDR	0x6000	/* struct sockaddr */</span>
&nbsp;
<span style="color: #339933;">#define IW_PRIV_SIZE_FIXED	0x0800	/* Variable or fixed number of args */</span>
&nbsp;
<span style="color: #339933;">#define IW_PRIV_SIZE_MASK	0x07FF	/* Max number of those args */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 * Note : if the number of args is fixed and the size &lt; 16 octets,
 * instead of passing a pointer we will put args in the iwreq struct...
 */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* ----------------------- OTHER CONSTANTS ----------------------- */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Maximum frequencies in the range struct */</span>
<span style="color: #339933;">#define IW_MAX_FREQUENCIES	32</span>
<span style="color: #808080; font-style: italic;">/* Note : if you have something like 80 frequencies,
 * don't increase this constant and don't fill the frequency list.
 * The user will be able to set by channel anyway... */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Maximum bit rates in the range struct */</span>
<span style="color: #339933;">#define IW_MAX_BITRATES		32</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Maximum tx powers in the range struct */</span>
<span style="color: #339933;">#define IW_MAX_TXPOWER		8</span>
<span style="color: #808080; font-style: italic;">/* Note : if you more than 8 TXPowers, just set the max and min or
 * a few of them in the struct iw_range. */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Maximum of address that you may set with SPY */</span>
<span style="color: #339933;">#define IW_MAX_SPY		8</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Maximum of address that you may get in the
   list of access points in range */</span>
<span style="color: #339933;">#define IW_MAX_AP		64</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Maximum size of the ESSID and NICKN strings */</span>
<span style="color: #339933;">#define IW_ESSID_MAX_SIZE	32</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Modes of operation */</span>
<span style="color: #339933;">#define IW_MODE_AUTO	0	/* Let the driver decides */</span>
<span style="color: #339933;">#define IW_MODE_ADHOC	1	/* Single cell network */</span>
<span style="color: #339933;">#define IW_MODE_INFRA	2	/* Multi cell network, roaming, ... */</span>
<span style="color: #339933;">#define IW_MODE_MASTER	3	/* Synchronisation master or Access Point */</span>
<span style="color: #339933;">#define IW_MODE_REPEAT	4	/* Wireless Repeater (forwarder) */</span>
<span style="color: #339933;">#define IW_MODE_SECOND	5	/* Secondary master/repeater (backup) */</span>
<span style="color: #339933;">#define IW_MODE_MONITOR	6	/* Passive monitor (listen only) */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Statistics flags (bitmask in updated) */</span>
<span style="color: #339933;">#define IW_QUAL_QUAL_UPDATED	0x01	/* Value was updated since last read */</span>
<span style="color: #339933;">#define IW_QUAL_LEVEL_UPDATED	0x02</span>
<span style="color: #339933;">#define IW_QUAL_NOISE_UPDATED	0x04</span>
<span style="color: #339933;">#define IW_QUAL_ALL_UPDATED	0x07</span>
<span style="color: #339933;">#define IW_QUAL_DBM		0x08	/* Level + Noise are dBm */</span>
<span style="color: #339933;">#define IW_QUAL_QUAL_INVALID	0x10	/* Driver doesn't provide value */</span>
<span style="color: #339933;">#define IW_QUAL_LEVEL_INVALID	0x20</span>
<span style="color: #339933;">#define IW_QUAL_NOISE_INVALID	0x40</span>
<span style="color: #339933;">#define IW_QUAL_ALL_INVALID	0x70</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Frequency flags */</span>
<span style="color: #339933;">#define IW_FREQ_AUTO		0x00	/* Let the driver decides */</span>
<span style="color: #339933;">#define IW_FREQ_FIXED		0x01	/* Force a specific value */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Maximum number of size of encoding token available
 * they are listed in the range structure */</span>
<span style="color: #339933;">#define IW_MAX_ENCODING_SIZES	8</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Maximum size of the encoding token in bytes */</span>
<span style="color: #339933;">#define IW_ENCODING_TOKEN_MAX	64	/* 512 bits (for now) */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Flags for encoding (along with the token) */</span>
<span style="color: #339933;">#define IW_ENCODE_INDEX		0x00FF	/* Token index (if needed) */</span>
<span style="color: #339933;">#define IW_ENCODE_FLAGS		0xFF00	/* Flags defined below */</span>
<span style="color: #339933;">#define IW_ENCODE_MODE		0xF000	/* Modes defined below */</span>
<span style="color: #339933;">#define IW_ENCODE_DISABLED	0x8000	/* Encoding disabled */</span>
<span style="color: #339933;">#define IW_ENCODE_ENABLED	0x0000	/* Encoding enabled */</span>
<span style="color: #339933;">#define IW_ENCODE_RESTRICTED	0x4000	/* Refuse non-encoded packets */</span>
<span style="color: #339933;">#define IW_ENCODE_OPEN		0x2000	/* Accept non-encoded packets */</span>
<span style="color: #339933;">#define IW_ENCODE_NOKEY		0x0800  /* Key is write only, so not present */</span>
<span style="color: #339933;">#define IW_ENCODE_TEMP		0x0400  /* Temporary key */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Power management flags available (along with the value, if any) */</span>
<span style="color: #339933;">#define IW_POWER_ON		0x0000	/* No details... */</span>
<span style="color: #339933;">#define IW_POWER_TYPE		0xF000	/* Type of parameter */</span>
<span style="color: #339933;">#define IW_POWER_PERIOD		0x1000	/* Value is a period/duration of  */</span>
<span style="color: #339933;">#define IW_POWER_TIMEOUT	0x2000	/* Value is a timeout (to go asleep) */</span>
<span style="color: #339933;">#define IW_POWER_MODE		0x0F00	/* Power Management mode */</span>
<span style="color: #339933;">#define IW_POWER_UNICAST_R	0x0100	/* Receive only unicast messages */</span>
<span style="color: #339933;">#define IW_POWER_MULTICAST_R	0x0200	/* Receive only multicast messages */</span>
<span style="color: #339933;">#define IW_POWER_ALL_R		0x0300	/* Receive all messages though PM */</span>
<span style="color: #339933;">#define IW_POWER_FORCE_S	0x0400	/* Force PM procedure for sending unicast */</span>
<span style="color: #339933;">#define IW_POWER_REPEATER	0x0800	/* Repeat broadcast messages in PM period */</span>
<span style="color: #339933;">#define IW_POWER_MODIFIER	0x000F	/* Modify a parameter */</span>
<span style="color: #339933;">#define IW_POWER_MIN		0x0001	/* Value is a minimum  */</span>
<span style="color: #339933;">#define IW_POWER_MAX		0x0002	/* Value is a maximum */</span>
<span style="color: #339933;">#define IW_POWER_RELATIVE	0x0004	/* Value is not in seconds/ms/us */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Transmit Power flags available */</span>
<span style="color: #339933;">#define IW_TXPOW_TYPE		0x00FF	/* Type of value */</span>
<span style="color: #339933;">#define IW_TXPOW_DBM		0x0000	/* Value is in dBm */</span>
<span style="color: #339933;">#define IW_TXPOW_MWATT		0x0001	/* Value is in mW */</span>
<span style="color: #339933;">#define IW_TXPOW_RELATIVE	0x0002	/* Value is in arbitrary units */</span>
<span style="color: #339933;">#define IW_TXPOW_RANGE		0x1000	/* Range of value between min/max */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Retry limits and lifetime flags available */</span>
<span style="color: #339933;">#define IW_RETRY_ON		0x0000	/* No details... */</span>
<span style="color: #339933;">#define IW_RETRY_TYPE		0xF000	/* Type of parameter */</span>
<span style="color: #339933;">#define IW_RETRY_LIMIT		0x1000	/* Maximum number of retries*/</span>
<span style="color: #339933;">#define IW_RETRY_LIFETIME	0x2000	/* Maximum duration of retries in us */</span>
<span style="color: #339933;">#define IW_RETRY_MODIFIER	0x000F	/* Modify a parameter */</span>
<span style="color: #339933;">#define IW_RETRY_MIN		0x0001	/* Value is a minimum  */</span>
<span style="color: #339933;">#define IW_RETRY_MAX		0x0002	/* Value is a maximum */</span>
<span style="color: #339933;">#define IW_RETRY_RELATIVE	0x0004	/* Value is not in seconds/ms/us */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Scanning request flags */</span>
<span style="color: #339933;">#define IW_SCAN_DEFAULT		0x0000	/* Default scan of the driver */</span>
<span style="color: #339933;">#define IW_SCAN_ALL_ESSID	0x0001	/* Scan all ESSIDs */</span>
<span style="color: #339933;">#define IW_SCAN_THIS_ESSID	0x0002	/* Scan only this ESSID */</span>
<span style="color: #339933;">#define IW_SCAN_ALL_FREQ	0x0004	/* Scan all Frequencies */</span>
<span style="color: #339933;">#define IW_SCAN_THIS_FREQ	0x0008	/* Scan only this Frequency */</span>
<span style="color: #339933;">#define IW_SCAN_ALL_MODE	0x0010	/* Scan all Modes */</span>
<span style="color: #339933;">#define IW_SCAN_THIS_MODE	0x0020	/* Scan only this Mode */</span>
<span style="color: #339933;">#define IW_SCAN_ALL_RATE	0x0040	/* Scan all Bit-Rates */</span>
<span style="color: #339933;">#define IW_SCAN_THIS_RATE	0x0080	/* Scan only this Bit-Rate */</span>
<span style="color: #808080; font-style: italic;">/* struct iw_scan_req scan_type */</span>
<span style="color: #339933;">#define IW_SCAN_TYPE_ACTIVE 0</span>
<span style="color: #339933;">#define IW_SCAN_TYPE_PASSIVE 1</span>
<span style="color: #808080; font-style: italic;">/* Maximum size of returned data */</span>
<span style="color: #339933;">#define IW_SCAN_MAX_DATA	4096	/* In bytes */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Max number of char in custom event - use multiple of them if needed */</span>
<span style="color: #339933;">#define IW_CUSTOM_MAX		256	/* In bytes */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Generic information element */</span>
<span style="color: #339933;">#define IW_GENERIC_IE_MAX	1024</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* MLME requests (SIOCSIWMLME / struct iw_mlme) */</span>
<span style="color: #339933;">#define IW_MLME_DEAUTH		0</span>
<span style="color: #339933;">#define IW_MLME_DISASSOC	1</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* SIOCSIWAUTH/SIOCGIWAUTH struct iw_param flags */</span>
<span style="color: #339933;">#define IW_AUTH_INDEX		0x0FFF</span>
<span style="color: #339933;">#define IW_AUTH_FLAGS		0xF000</span>
<span style="color: #808080; font-style: italic;">/* SIOCSIWAUTH/SIOCGIWAUTH parameters (0 .. 4095)
 * (IW_AUTH_INDEX mask in struct iw_param flags; this is the index of the
 * parameter that is being set/get to; value will be read/written to
 * struct iw_param value field) */</span>
<span style="color: #339933;">#define IW_AUTH_WPA_VERSION		0</span>
<span style="color: #339933;">#define IW_AUTH_CIPHER_PAIRWISE		1</span>
<span style="color: #339933;">#define IW_AUTH_CIPHER_GROUP		2</span>
<span style="color: #339933;">#define IW_AUTH_KEY_MGMT		3</span>
<span style="color: #339933;">#define IW_AUTH_TKIP_COUNTERMEASURES	4</span>
<span style="color: #339933;">#define IW_AUTH_DROP_UNENCRYPTED	5</span>
<span style="color: #339933;">#define IW_AUTH_80211_AUTH_ALG		6</span>
<span style="color: #339933;">#define IW_AUTH_WPA_ENABLED		7</span>
<span style="color: #339933;">#define IW_AUTH_RX_UNENCRYPTED_EAPOL	8</span>
<span style="color: #339933;">#define IW_AUTH_ROAMING_CONTROL		9</span>
<span style="color: #339933;">#define IW_AUTH_PRIVACY_INVOKED		10</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* IW_AUTH_WPA_VERSION values (bit field) */</span>
<span style="color: #339933;">#define IW_AUTH_WPA_VERSION_DISABLED	0x00000001</span>
<span style="color: #339933;">#define IW_AUTH_WPA_VERSION_WPA		0x00000002</span>
<span style="color: #339933;">#define IW_AUTH_WPA_VERSION_WPA2	0x00000004</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* IW_AUTH_PAIRWISE_CIPHER and IW_AUTH_GROUP_CIPHER values (bit field) */</span>
<span style="color: #339933;">#define IW_AUTH_CIPHER_NONE	0x00000001</span>
<span style="color: #339933;">#define IW_AUTH_CIPHER_WEP40	0x00000002</span>
<span style="color: #339933;">#define IW_AUTH_CIPHER_TKIP	0x00000004</span>
<span style="color: #339933;">#define IW_AUTH_CIPHER_CCMP	0x00000008</span>
<span style="color: #339933;">#define IW_AUTH_CIPHER_WEP104	0x00000010</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* IW_AUTH_KEY_MGMT values (bit field) */</span>
<span style="color: #339933;">#define IW_AUTH_KEY_MGMT_802_1X	1</span>
<span style="color: #339933;">#define IW_AUTH_KEY_MGMT_PSK	2</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* IW_AUTH_80211_AUTH_ALG values (bit field) */</span>
<span style="color: #339933;">#define IW_AUTH_ALG_OPEN_SYSTEM	0x00000001</span>
<span style="color: #339933;">#define IW_AUTH_ALG_SHARED_KEY	0x00000002</span>
<span style="color: #339933;">#define IW_AUTH_ALG_LEAP	0x00000004</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* IW_AUTH_ROAMING_CONTROL values */</span>
<span style="color: #339933;">#define IW_AUTH_ROAMING_ENABLE	0	/* driver/firmware based roaming */</span>
<span style="color: #339933;">#define IW_AUTH_ROAMING_DISABLE	1	/* user space program used for roaming</span>
					 <span style="color: #339933;">*</span> control <span style="color: #339933;">*/</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* SIOCSIWENCODEEXT definitions */</span>
<span style="color: #339933;">#define IW_ENCODE_SEQ_MAX_SIZE	8</span>
<span style="color: #808080; font-style: italic;">/* struct iw_encode_ext -&gt;alg */</span>
<span style="color: #339933;">#define IW_ENCODE_ALG_NONE	0</span>
<span style="color: #339933;">#define IW_ENCODE_ALG_WEP	1</span>
<span style="color: #339933;">#define IW_ENCODE_ALG_TKIP	2</span>
<span style="color: #339933;">#define IW_ENCODE_ALG_CCMP	3</span>
<span style="color: #808080; font-style: italic;">/* struct iw_encode_ext -&gt;ext_flags */</span>
<span style="color: #339933;">#define IW_ENCODE_EXT_TX_SEQ_VALID	0x00000001</span>
<span style="color: #339933;">#define IW_ENCODE_EXT_RX_SEQ_VALID	0x00000002</span>
<span style="color: #339933;">#define IW_ENCODE_EXT_GROUP_KEY		0x00000004</span>
<span style="color: #339933;">#define IW_ENCODE_EXT_SET_TX_KEY	0x00000008</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* IWEVMICHAELMICFAILURE : struct iw_michaelmicfailure -&gt;flags */</span>
<span style="color: #339933;">#define IW_MICFAILURE_KEY_ID	0x00000003 /* Key ID 0..3 */</span>
<span style="color: #339933;">#define IW_MICFAILURE_GROUP	0x00000004</span>
<span style="color: #339933;">#define IW_MICFAILURE_PAIRWISE	0x00000008</span>
<span style="color: #339933;">#define IW_MICFAILURE_STAKEY	0x00000010</span>
<span style="color: #339933;">#define IW_MICFAILURE_COUNT	0x00000060 /* 1 or 2 (0 = count not supported)</span>
					    <span style="color: #339933;">*/</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Bit field values for enc_capa in struct iw_range */</span>
<span style="color: #339933;">#define IW_ENC_CAPA_WPA		0x00000001</span>
<span style="color: #339933;">#define IW_ENC_CAPA_WPA2	0x00000002</span>
<span style="color: #339933;">#define IW_ENC_CAPA_CIPHER_TKIP	0x00000004</span>
<span style="color: #339933;">#define IW_ENC_CAPA_CIPHER_CCMP	0x00000008</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Event capability macros - in (struct iw_range *)-&gt;event_capa
 * Because we have more than 32 possible events, we use an array of
 * 32 bit bitmasks. Note : 32 bits = 0x20 = 2^5. */</span>
<span style="color: #339933;">#define IW_EVENT_CAPA_BASE(cmd)		((cmd &gt;= SIOCIWFIRSTPRIV) ? \
					 (cmd - SIOCIWFIRSTPRIV + 0x60) : \
					 (cmd - SIOCSIWCOMMIT))</span>
<span style="color: #339933;">#define IW_EVENT_CAPA_INDEX(cmd)	(IW_EVENT_CAPA_BASE(cmd) &gt;&gt; 5)</span>
<span style="color: #339933;">#define IW_EVENT_CAPA_MASK(cmd)		(1 &lt;&lt; (IW_EVENT_CAPA_BASE(cmd) &amp; 0x1F))</span>
<span style="color: #808080; font-style: italic;">/* Event capability constants - event autogenerated by the kernel
 * This list is valid for most 802.11 devices, customise as needed... */</span>
<span style="color: #339933;">#define IW_EVENT_CAPA_K_0	(IW_EVENT_CAPA_MASK(0x8B04) | \
				 IW_EVENT_CAPA_MASK(0x8B06) | \
				 IW_EVENT_CAPA_MASK(0x8B1A))</span>
<span style="color: #339933;">#define IW_EVENT_CAPA_K_1	(IW_EVENT_CAPA_MASK(0x8B2A))</span>
<span style="color: #808080; font-style: italic;">/* &quot;Easy&quot; macro to set events in iw_range (less efficient) */</span>
<span style="color: #339933;">#define IW_EVENT_CAPA_SET(event_capa, cmd) (event_capa[IW_EVENT_CAPA_INDEX(cmd)] |= IW_EVENT_CAPA_MASK(cmd))</span>
<span style="color: #339933;">#define IW_EVENT_CAPA_SET_KERNEL(event_capa) {event_capa[0] |= IW_EVENT_CAPA_K_0; event_capa[1] |= IW_EVENT_CAPA_K_1; }</span>
&nbsp;
&nbsp;
<span style="color: #808080; font-style: italic;">/****************************** TYPES ******************************/</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* --------------------------- SUBTYPES --------------------------- */</span>
<span style="color: #808080; font-style: italic;">/*
 *	Generic format for most parameters that fit in an int
 */</span>
<span style="color: #993333;">struct</span>	iw_param
<span style="color: #009900;">&#123;</span>
  __s32		value<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* The value of the parameter itself */</span>
  __u8		fixed<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Hardware should not use auto select */</span>
  __u8		disabled<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Disable the feature */</span>
  __u16		flags<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Various specifc flags (if any) */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	For all data larger than 16 octets, we need to use a
 *	pointer to memory allocated in user space.
 */</span>
<span style="color: #993333;">struct</span>	iw_point
<span style="color: #009900;">&#123;</span>
  <span style="color: #993333;">void</span> __user	<span style="color: #339933;">*</span>pointer<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Pointer to the data  (in user space) */</span>
  __u16		length<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* number of fields or size in bytes */</span>
  __u16		flags<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Optional params */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	A frequency
 *	For numbers lower than 10^9, we encode the number in 'm' and
 *	set 'e' to 0
 *	For number greater than 10^9, we divide it by the lowest power
 *	of 10 to get 'm' lower than 10^9, with 'm'= f / (10^'e')...
 *	The power of 10 is in 'e', the result of the division is in 'm'.
 */</span>
<span style="color: #993333;">struct</span>	iw_freq
<span style="color: #009900;">&#123;</span>
	__s32		m<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Mantissa */</span>
	__s16		e<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Exponent */</span>
	__u8		i<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* List index (when in range struct) */</span>
	__u8		flags<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Flags (fixed/auto) */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	Quality of the link
 */</span>
<span style="color: #993333;">struct</span>	iw_quality
<span style="color: #009900;">&#123;</span>
	__u8		qual<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* link quality (%retries, SNR,
					   %missed beacons or better...) */</span>
	__u8		level<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* signal level (dBm) */</span>
	__u8		noise<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* noise level (dBm) */</span>
	__u8		updated<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Flags to know if updated */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	Packet discarded in the wireless adapter due to
 *	&quot;wireless&quot; specific problems...
 *	Note : the list of counter and statistics in net_device_stats
 *	is already pretty exhaustive, and you should use that first.
 *	This is only additional stats...
 */</span>
<span style="color: #993333;">struct</span>	iw_discarded
<span style="color: #009900;">&#123;</span>
	__u32		nwid<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Rx : Wrong nwid/essid */</span>
	__u32		code<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Rx : Unable to code/decode (WEP) */</span>
	__u32		fragment<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Rx : Can't perform MAC reassembly */</span>
	__u32		retries<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Tx : Max MAC retries num reached */</span>
	__u32		misc<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Others cases */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	Packet/Time period missed in the wireless adapter due to
 *	&quot;wireless&quot; specific problems...
 */</span>
<span style="color: #993333;">struct</span>	iw_missed
<span style="color: #009900;">&#123;</span>
	__u32		beacon<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Missed beacons/superframe */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	Quality range (for spy threshold)
 */</span>
<span style="color: #993333;">struct</span>	iw_thrspy
<span style="color: #009900;">&#123;</span>
	<span style="color: #993333;">struct</span> sockaddr		addr<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Source address (hw/mac) */</span>
	<span style="color: #993333;">struct</span> iw_quality	qual<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Quality of the link */</span>
	<span style="color: #993333;">struct</span> iw_quality	low<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Low threshold */</span>
	<span style="color: #993333;">struct</span> iw_quality	high<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* High threshold */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	Optional data for scan request
 *
 *	Note: these optional parameters are controlling parameters for the
 *	scanning behavior, these do not apply to getting scan results
 *	(SIOCGIWSCAN). Drivers are expected to keep a local BSS table and
 *	provide a merged results with all BSSes even if the previous scan
 *	request limited scanning to a subset, e.g., by specifying an SSID.
 *	Especially, scan results are required to include an entry for the
 *	current BSS if the driver is in Managed mode and associated with an AP.
 */</span>
<span style="color: #993333;">struct</span>	iw_scan_req
<span style="color: #009900;">&#123;</span>
	__u8		scan_type<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* IW_SCAN_TYPE_{ACTIVE,PASSIVE} */</span>
	__u8		essid_len<span style="color: #339933;">;</span>
	__u8		num_channels<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* num entries in channel_list;
				       * 0 = scan all allowed channels */</span>
	__u8		flags<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* reserved as padding; use zero, this may
				* be used in the future for adding flags
				* to request different scan behavior */</span>
	<span style="color: #993333;">struct</span> sockaddr	bssid<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* ff:ff:ff:ff:ff:ff for broadcast BSSID or
				* individual address of a specific BSS */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/*
	 * Use this ESSID if IW_SCAN_THIS_ESSID flag is used instead of using
	 * the current ESSID. This allows scan requests for specific ESSID
	 * without having to change the current ESSID and potentially breaking
	 * the current association.
	 */</span>
	__u8		essid<span style="color: #009900;">&#91;</span>IW_ESSID_MAX_SIZE<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/*
	 * Optional parameters for changing the default scanning behavior.
	 * These are based on the MLME-SCAN.request from IEEE Std 802.11.
	 * TU is 1.024 ms. If these are set to 0, driver is expected to use
	 * reasonable default values. min_channel_time defines the time that
	 * will be used to wait for the first reply on each channel. If no
	 * replies are received, next channel will be scanned after this. If
	 * replies are received, total time waited on the channel is defined by
	 * max_channel_time.
	 */</span>
	__u32		min_channel_time<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* in TU */</span>
	__u32		max_channel_time<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* in TU */</span>
&nbsp;
	<span style="color: #993333;">struct</span> iw_freq	channel_list<span style="color: #009900;">&#91;</span>IW_MAX_FREQUENCIES<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* ------------------------- WPA SUPPORT ------------------------- */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	Extended data structure for get/set encoding (this is used with
 *	SIOCSIWENCODEEXT/SIOCGIWENCODEEXT. struct iw_point and IW_ENCODE_*
 *	flags are used in the same way as with SIOCSIWENCODE/SIOCGIWENCODE and
 *	only the data contents changes (key data -&gt; this structure, including
 *	key data).
 *
 *	If the new key is the first group key, it will be set as the default
 *	TX key. Otherwise, default TX key index is only changed if
 *	IW_ENCODE_EXT_SET_TX_KEY flag is set.
 *
 *	Key will be changed with SIOCSIWENCODEEXT in all cases except for
 *	special &quot;change TX key index&quot; operation which is indicated by setting
 *	key_len = 0 and ext_flags |= IW_ENCODE_EXT_SET_TX_KEY.
 *
 *	tx_seq/rx_seq are only used when respective
 *	IW_ENCODE_EXT_{TX,RX}_SEQ_VALID flag is set in ext_flags. Normal
 *	TKIP/CCMP operation is to set RX seq with SIOCSIWENCODEEXT and start
 *	TX seq from zero whenever key is changed. SIOCGIWENCODEEXT is normally
 *	used only by an Authenticator (AP or an IBSS station) to get the
 *	current TX sequence number. Using TX_SEQ_VALID for SIOCSIWENCODEEXT and
 *	RX_SEQ_VALID for SIOCGIWENCODEEXT are optional, but can be useful for
 *	debugging/testing.
 */</span>
<span style="color: #993333;">struct</span>	iw_encode_ext
<span style="color: #009900;">&#123;</span>
	__u32		ext_flags<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* IW_ENCODE_EXT_* */</span>
	__u8		tx_seq<span style="color: #009900;">&#91;</span>IW_ENCODE_SEQ_MAX_SIZE<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* LSB first */</span>
	__u8		rx_seq<span style="color: #009900;">&#91;</span>IW_ENCODE_SEQ_MAX_SIZE<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* LSB first */</span>
	<span style="color: #993333;">struct</span> sockaddr	addr<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* ff:ff:ff:ff:ff:ff for broadcast/multicast
			       * (group) keys or unicast address for
			       * individual keys */</span>
	__u16		alg<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* IW_ENCODE_ALG_* */</span>
	__u16		key_len<span style="color: #339933;">;</span>
	__u8		key<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* SIOCSIWMLME data */</span>
<span style="color: #993333;">struct</span>	iw_mlme
<span style="color: #009900;">&#123;</span>
	__u16		cmd<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* IW_MLME_* */</span>
	__u16		reason_code<span style="color: #339933;">;</span>
	<span style="color: #993333;">struct</span> sockaddr	addr<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* SIOCSIWPMKSA data */</span>
<span style="color: #339933;">#define IW_PMKSA_ADD		1</span>
<span style="color: #339933;">#define IW_PMKSA_REMOVE		2</span>
<span style="color: #339933;">#define IW_PMKSA_FLUSH		3</span>
&nbsp;
<span style="color: #339933;">#define IW_PMKID_LEN	16</span>
&nbsp;
<span style="color: #993333;">struct</span>	iw_pmksa
<span style="color: #009900;">&#123;</span>
	__u32		cmd<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* IW_PMKSA_* */</span>
	<span style="color: #993333;">struct</span> sockaddr	bssid<span style="color: #339933;">;</span>
	__u8		pmkid<span style="color: #009900;">&#91;</span>IW_PMKID_LEN<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* IWEVMICHAELMICFAILURE data */</span>
<span style="color: #993333;">struct</span>	iw_michaelmicfailure
<span style="color: #009900;">&#123;</span>
	__u32		flags<span style="color: #339933;">;</span>
	<span style="color: #993333;">struct</span> sockaddr	src_addr<span style="color: #339933;">;</span>
	__u8		tsc<span style="color: #009900;">&#91;</span>IW_ENCODE_SEQ_MAX_SIZE<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* LSB first */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* IWEVPMKIDCAND data */</span>
<span style="color: #339933;">#define IW_PMKID_CAND_PREAUTH	0x00000001 /* RNS pre-authentication enabled */</span>
<span style="color: #993333;">struct</span>	iw_pmkid_cand
<span style="color: #009900;">&#123;</span>
	__u32		flags<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* IW_PMKID_CAND_* */</span>
	__u32		index<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* the smaller the index, the higher the
				* priority */</span>
	<span style="color: #993333;">struct</span> sockaddr	bssid<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* ------------------------ WIRELESS STATS ------------------------ */</span>
<span style="color: #808080; font-style: italic;">/*
 * Wireless statistics (used for /proc/net/wireless)
 */</span>
<span style="color: #993333;">struct</span>	iw_statistics
<span style="color: #009900;">&#123;</span>
	__u16		status<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Status
					 * - device dependent for now */</span>
&nbsp;
	<span style="color: #993333;">struct</span> iw_quality	qual<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Quality of the link
						 * (instant/mean/max) */</span>
	<span style="color: #993333;">struct</span> iw_discarded	discard<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Packet discarded counts */</span>
	<span style="color: #993333;">struct</span> iw_missed	miss<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Packet missed counts */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* ------------------------ IOCTL REQUEST ------------------------ */</span>
<span style="color: #808080; font-style: italic;">/*
 * This structure defines the payload of an ioctl, and is used 
 * below.
 *
 * Note that this structure should fit on the memory footprint
 * of iwreq (which is the same as ifreq), which mean a max size of
 * 16 octets = 128 bits. Warning, pointers might be 64 bits wide...
 * You should check this when increasing the structures defined
 * above in this file...
 */</span>
<span style="color: #993333;">union</span>	iwreq_data
<span style="color: #009900;">&#123;</span>
	<span style="color: #808080; font-style: italic;">/* Config - generic */</span>
	<span style="color: #993333;">char</span>		name<span style="color: #009900;">&#91;</span>IFNAMSIZ<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
	<span style="color: #808080; font-style: italic;">/* Name : used to verify the presence of  wireless extensions.
	 * Name of the protocol/provider... */</span>
&nbsp;
	<span style="color: #993333;">struct</span> iw_point	essid<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Extended network name */</span>
	<span style="color: #993333;">struct</span> iw_param	nwid<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* network id (or domain - the cell) */</span>
	<span style="color: #993333;">struct</span> iw_freq	freq<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* frequency or channel :
					 * 0-1000 = channel
					 * &gt; 1000 = frequency in Hz */</span>
&nbsp;
	<span style="color: #993333;">struct</span> iw_param	sens<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* signal level threshold */</span>
	<span style="color: #993333;">struct</span> iw_param	bitrate<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* default bit rate */</span>
	<span style="color: #993333;">struct</span> iw_param	txpower<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* default transmit power */</span>
	<span style="color: #993333;">struct</span> iw_param	rts<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* RTS threshold threshold */</span>
	<span style="color: #993333;">struct</span> iw_param	frag<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Fragmentation threshold */</span>
	__u32		mode<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Operation mode */</span>
	<span style="color: #993333;">struct</span> iw_param	retry<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Retry limits &amp; lifetime */</span>
&nbsp;
	<span style="color: #993333;">struct</span> iw_point	encoding<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Encoding stuff : tokens */</span>
	<span style="color: #993333;">struct</span> iw_param	power<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* PM duration/timeout */</span>
	<span style="color: #993333;">struct</span> iw_quality qual<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Quality part of statistics */</span>
&nbsp;
	<span style="color: #993333;">struct</span> sockaddr	ap_addr<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Access point address */</span>
	<span style="color: #993333;">struct</span> sockaddr	addr<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Destination address (hw/mac) */</span>
&nbsp;
	<span style="color: #993333;">struct</span> iw_param	param<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Other small parameters */</span>
	<span style="color: #993333;">struct</span> iw_point	data<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Other large parameters */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 * The structure to exchange data for ioctl.
 * This structure is the same as 'struct ifreq', but (re)defined for
 * convenience...
 * Do I need to remind you about structure size (32 octets) ?
 */</span>
<span style="color: #993333;">struct</span>	iwreq 
<span style="color: #009900;">&#123;</span>
	<span style="color: #993333;">union</span>
	<span style="color: #009900;">&#123;</span>
		<span style="color: #993333;">char</span>	ifrn_name<span style="color: #009900;">&#91;</span>IFNAMSIZ<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* if name, e.g. &quot;eth0&quot; */</span>
	<span style="color: #009900;">&#125;</span> ifr_ifrn<span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Data part (defined just above) */</span>
	<span style="color: #993333;">union</span>	iwreq_data	u<span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* -------------------------- IOCTL DATA -------------------------- */</span>
<span style="color: #808080; font-style: italic;">/*
 *	For those ioctl which want to exchange mode data that what could
 *	fit in the above structure...
 */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 *	Range of parameters
 */</span>
&nbsp;
<span style="color: #993333;">struct</span>	iw_range
<span style="color: #009900;">&#123;</span>
	<span style="color: #808080; font-style: italic;">/* Informative stuff (to choose between different interface) */</span>
	__u32		throughput<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* To give an idea... */</span>
	<span style="color: #808080; font-style: italic;">/* In theory this value should be the maximum benchmarked
	 * TCP/IP throughput, because with most of these devices the
	 * bit rate is meaningless (overhead an co) to estimate how
	 * fast the connection will go and pick the fastest one.
	 * I suggest people to play with Netperf or any benchmark...
	 */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* NWID (or domain id) */</span>
	__u32		min_nwid<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Minimal NWID we are able to set */</span>
	__u32		max_nwid<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Maximal NWID we are able to set */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Old Frequency (backward compat - moved lower ) */</span>
	__u16		old_num_channels<span style="color: #339933;">;</span>
	__u8		old_num_frequency<span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Wireless event capability bitmasks */</span>
	__u32		event_capa<span style="color: #009900;">&#91;</span><span style="color: #0000dd;">6</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* signal level threshold range */</span>
	__s32		sensitivity<span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Quality of link &amp; SNR stuff */</span>
	<span style="color: #808080; font-style: italic;">/* Quality range (link, level, noise)
	 * If the quality is absolute, it will be in the range [0 ; max_qual],
	 * if the quality is dBm, it will be in the range [max_qual ; 0].
	 * Don't forget that we use 8 bit arithmetics... */</span>
	<span style="color: #993333;">struct</span> iw_quality	max_qual<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Quality of the link */</span>
	<span style="color: #808080; font-style: italic;">/* This should contain the average/typical values of the quality
	 * indicator. This should be the threshold between a &quot;good&quot; and
	 * a &quot;bad&quot; link (example : monitor going from green to orange).
	 * Currently, user space apps like quality monitors don't have any
	 * way to calibrate the measurement. With this, they can split
	 * the range between 0 and max_qual in different quality level
	 * (using a geometric subdivision centered on the average).
	 * I expect that people doing the user space apps will feedback
	 * us on which value we need to put in each driver... */</span>
	<span style="color: #993333;">struct</span> iw_quality	avg_qual<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Quality of the link */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Rates */</span>
	__u8		num_bitrates<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Number of entries in the list */</span>
	__s32		bitrate<span style="color: #009900;">&#91;</span>IW_MAX_BITRATES<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* list, in bps */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* RTS threshold */</span>
	__s32		min_rts<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Minimal RTS threshold */</span>
	__s32		max_rts<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Maximal RTS threshold */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Frag threshold */</span>
	__s32		min_frag<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Minimal frag threshold */</span>
	__s32		max_frag<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Maximal frag threshold */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Power Management duration &amp; timeout */</span>
	__s32		min_pmp<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Minimal PM period */</span>
	__s32		max_pmp<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Maximal PM period */</span>
	__s32		min_pmt<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Minimal PM timeout */</span>
	__s32		max_pmt<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Maximal PM timeout */</span>
	__u16		pmp_flags<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* How to decode max/min PM period */</span>
	__u16		pmt_flags<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* How to decode max/min PM timeout */</span>
	__u16		pm_capa<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* What PM options are supported */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Encoder stuff */</span>
	__u16	encoding_size<span style="color: #009900;">&#91;</span>IW_MAX_ENCODING_SIZES<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Different token sizes */</span>
	__u8	num_encoding_sizes<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Number of entry in the list */</span>
	__u8	max_encoding_tokens<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Max number of tokens */</span>
	<span style="color: #808080; font-style: italic;">/* For drivers that need a &quot;login/passwd&quot; form */</span>
	__u8	encoding_login_index<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* token index for login token */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Transmit power */</span>
	__u16		txpower_capa<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* What options are supported */</span>
	__u8		num_txpower<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Number of entries in the list */</span>
	__s32		txpower<span style="color: #009900;">&#91;</span>IW_MAX_TXPOWER<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* list, in bps */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Wireless Extension version info */</span>
	__u8		we_version_compiled<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Must be WIRELESS_EXT */</span>
	__u8		we_version_source<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Last update of source */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Retry limits and lifetime */</span>
	__u16		retry_capa<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* What retry options are supported */</span>
	__u16		retry_flags<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* How to decode max/min retry limit */</span>
	__u16		r_time_flags<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* How to decode max/min retry life */</span>
	__s32		min_retry<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Minimal number of retries */</span>
	__s32		max_retry<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Maximal number of retries */</span>
	__s32		min_r_time<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Minimal retry lifetime */</span>
	__s32		max_r_time<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Maximal retry lifetime */</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">/* Frequency */</span>
	__u16		num_channels<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Number of channels [0; num - 1] */</span>
	__u8		num_frequency<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Number of entry in the list */</span>
	<span style="color: #993333;">struct</span> iw_freq	freq<span style="color: #009900;">&#91;</span>IW_MAX_FREQUENCIES<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* list */</span>
	<span style="color: #808080; font-style: italic;">/* Note : this frequency list doesn't need to fit channel numbers,
	 * because each entry contain its channel index */</span>
&nbsp;
	__u32		enc_capa<span style="color: #339933;">;</span> <span style="color: #808080; font-style: italic;">/* IW_ENC_CAPA_* bit field */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 * Private ioctl interface information
 */</span>
&nbsp;
<span style="color: #993333;">struct</span>	iw_priv_args
<span style="color: #009900;">&#123;</span>
	__u32		cmd<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* Number of the ioctl to issue */</span>
	__u16		set_args<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Type and number of args */</span>
	__u16		get_args<span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Type and number of args */</span>
	<span style="color: #993333;">char</span>		name<span style="color: #009900;">&#91;</span>IFNAMSIZ<span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>	<span style="color: #808080; font-style: italic;">/* Name of the extension */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* ----------------------- WIRELESS EVENTS ----------------------- */</span>
<span style="color: #808080; font-style: italic;">/*
 * Wireless events are carried through the rtnetlink socket to user
 * space. They are encapsulated in the IFLA_WIRELESS field of
 * a RTM_NEWLINK message.
 */</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/*
 * A Wireless Event. Contains basically the same data as the ioctl...
 */</span>
<span style="color: #993333;">struct</span> iw_event
<span style="color: #009900;">&#123;</span>
	__u16		len<span style="color: #339933;">;</span>			<span style="color: #808080; font-style: italic;">/* Real length of this stuff */</span>
	__u16		cmd<span style="color: #339933;">;</span>			<span style="color: #808080; font-style: italic;">/* Wireless IOCTL */</span>
	<span style="color: #993333;">union</span> iwreq_data	u<span style="color: #339933;">;</span>		<span style="color: #808080; font-style: italic;">/* IOCTL fixed payload */</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* Size of the Event prefix (including padding and alignement junk) */</span>
<span style="color: #339933;">#define IW_EV_LCP_LEN	(sizeof(struct iw_event) - sizeof(union iwreq_data))</span>
<span style="color: #808080; font-style: italic;">/* Size of the various events */</span>
<span style="color: #339933;">#define IW_EV_CHAR_LEN	(IW_EV_LCP_LEN + IFNAMSIZ)</span>
<span style="color: #339933;">#define IW_EV_UINT_LEN	(IW_EV_LCP_LEN + sizeof(__u32))</span>
<span style="color: #339933;">#define IW_EV_FREQ_LEN	(IW_EV_LCP_LEN + sizeof(struct iw_freq))</span>
<span style="color: #339933;">#define IW_EV_PARAM_LEN	(IW_EV_LCP_LEN + sizeof(struct iw_param))</span>
<span style="color: #339933;">#define IW_EV_ADDR_LEN	(IW_EV_LCP_LEN + sizeof(struct sockaddr))</span>
<span style="color: #339933;">#define IW_EV_QUAL_LEN	(IW_EV_LCP_LEN + sizeof(struct iw_quality))</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* iw_point events are special. First, the payload (extra data) come at
 * the end of the event, so they are bigger than IW_EV_POINT_LEN. Second,
 * we omit the pointer, so start at an offset. */</span>
<span style="color: #339933;">#define IW_EV_POINT_OFF (((char *) &amp;(((struct iw_point *) NULL)-&gt;length)) - \
			  (char *) NULL)</span>
<span style="color: #339933;">#define IW_EV_POINT_LEN	(IW_EV_LCP_LEN + sizeof(struct iw_point) - \
			 IW_EV_POINT_OFF)</span>
&nbsp;
<span style="color: #339933;">#endif	/* _LINUX_WIRELESS_H */</span></pre></td></tr></table></div>



<p>关联文章:<ol><li><a href='http://www.vi1129.com/2010/01/ioctl-getifaddrs-ipv46/' rel='bookmark' title='Permanent Link: ioctl及getifaddrs读取IPv4,IPv6网卡信息'>ioctl及getifaddrs读取IPv4,IPv6网卡信息</a></li>
<li><a href='http://www.vi1129.com/2010/03/sock_raw-dump/' rel='bookmark' title='Permanent Link: 使用原始套接字SOCK_RAW捕捉网络数据包并简单分析'>使用原始套接字SOCK_RAW捕捉网络数据包并简单分析</a></li>
<li><a href='http://www.vi1129.com/2009/11/linux-md5/' rel='bookmark' title='Permanent Link: MD5应用的一点理解及Linux实现源码'>MD5应用的一点理解及Linux实现源码</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.vi1129.com/2009/08/set-madwifi-ssid-with-ioctl/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
