summaryrefslogtreecommitdiffhomepage
path: root/auto/sockets
blob: 1b6b436829096b6012c3a7900c31138fd0661651 (plain) (blame)
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

# Copyright (C) Igor Sysoev
# Copyright (C) NGINX, Inc.


if [ $NXT_INET6 = YES ]; then

    nxt_feature="AF_INET6"
    nxt_feature_name=NXT_INET6
    nxt_feature_run=
    nxt_feature_incs=
    nxt_feature_libs=
    nxt_feature_test="#include <stdio.h>
                      #include <sys/socket.h>
                      #include <sys/types.h>
                      #include <netinet/in.h>

                      int main() {
                          struct sockaddr_in6  sin6;

                          sin6.sin6_family = AF_INET6;
                          printf(\"%d\", sin6.sin6_family);
                          return 0;
                      }"
    . auto/feature
fi


# FreeBSD, MacOSX, NetBSD, OpenBSD.

nxt_feature="sockaddr.sa_len"
nxt_feature_name=NXT_SOCKADDR_SA_LEN
nxt_feature_run=
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <stdio.h>
                  #include <sys/socket.h>

                  int main() {
                      struct sockaddr  sa;

                      sa.sa_len = 0;
                      printf(\"%d\", sa.sa_len);
                      return 0;
                  }"
. auto/feature


nxt_feature="struct sockaddr size"
nxt_feature_name=NXT_HAVE_SOCKADDR
nxt_feature_run=value
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <stdio.h>
                  #include <sys/socket.h>

                  int main() {
                      printf(\"%d\", (int) sizeof(struct sockaddr));
                      return 0;
                  }"
. auto/feature


nxt_feature="struct sockaddr_in size"
nxt_feature_name=NXT_HAVE_SOCKADDR_IN
nxt_feature_run=value
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <stdio.h>
                  #include <sys/types.h>
                  #include <netinet/in.h>

                  int main() {
                      printf(\"%d\", (int) sizeof(struct sockaddr_in));
                      return 0;
                  }"
. auto/feature


nxt_feature="struct sockaddr_in6 size"
nxt_feature_name=NXT_HAVE_SOCKADDR_IN6
nxt_feature_run=value
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <stdio.h>
                  #include <sys/types.h>
                  #include <netinet/in.h>

                  int main() {
                      printf(\"%d\", (int) sizeof(struct sockaddr_in6));
                      return 0;
                  }"
. auto/feature


nxt_feature="struct sockaddr_un size"
nxt_feature_name=NXT_HAVE_SOCKADDR_UN
nxt_feature_run=value
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <stdio.h>
                  #include <sys/types.h>
                  #include <sys/un.h>

                  int main() {
                      printf(\"%d\", (int) sizeof(struct sockaddr_un));
                      return 0;
                  }"
. auto/feature


nxt_feature="struct sockaddr_storage size"
nxt_feature_name=NXT_HAVE_SOCKADDR_STORAGE
nxt_feature_run=value
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <stdio.h>
                  #include <sys/socket.h>

                  int main() {
                      printf(\"%d\", (int) sizeof(struct sockaddr_storage));
                      return 0;
                  }"
. auto/feature


nxt_feature="socketpair(AF_UNIX, SOCK_SEQPACKET)"
nxt_feature_name=NXT_HAVE_AF_UNIX_SOCK_SEQPACKET
nxt_feature_run=yes
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <stdio.h>
                  #include <sys/socket.h>

                  int main() {
                      int  pair[2];

                      if (socketpair(AF_UNIX, SOCK_SEQPACKET, 0, pair) != 0)
                          return 1;
                      return 0;
                  }"
. auto/feature


nxt_feature="struct msghdr.msg_control"
nxt_feature_name=NXT_HAVE_MSGHDR_MSG_CONTROL
nxt_feature_run=
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <stdio.h>
                  #include <sys/socket.h>

                  int main() {
                      struct  msghdr  msg;

                      printf(\"%d\", (int) sizeof(msg.msg_control));
                      return 0;
                  }"
. auto/feature

if [ $nxt_found = no ]; then
    $echo
    $echo $0: error: no msghdr.msg_control struct member.
    $echo
    exit 1;
fi


nxt_feature="sockopt SO_PASSCRED"
nxt_feature_name=NXT_HAVE_SOCKOPT_SO_PASSCRED
nxt_feature_run=
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#define _GNU_SOURCE
                  #include <sys/socket.h>

                  int main() {
                      return SO_PASSCRED == 0;
                  }"
. auto/feature


if [ $nxt_found = yes ]; then
    nxt_feature="struct ucred"
    nxt_feature_name=NXT_HAVE_UCRED
    nxt_feature_run=
    nxt_feature_incs=
    nxt_feature_libs=
    nxt_feature_test="#define _GNU_SOURCE
                      #include <sys/socket.h>
                      #include <sys/un.h>

                      int main() {
                          return sizeof(struct ucred);
                      }"
    . auto/feature
fi


nxt_feature="struct cmsgcred"
nxt_feature_name=NXT_HAVE_MSGHDR_CMSGCRED
nxt_feature_run=
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#define _GNU_SOURCE
                  #include <sys/socket.h>

                  int main() {
                      return sizeof(struct cmsgcred);
                  }"
. auto/feature


nxt_feature="sys/filio.h"
nxt_feature_name=NXT_HAVE_SYS_FILIO_H
nxt_feature_run=
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <sys/filio.h>

                  int main() {
                      return 0;
                  }"
. auto/feature

if [ $nxt_found = yes ]; then
    NXT_SYS_FILIO_H="#include <sys/filio.h>"
else
    NXT_SYS_FILIO_H=
fi


nxt_feature="ioctl(FIONBIO)"
nxt_feature_name=NXT_HAVE_FIONBIO
nxt_feature_run=
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#include <unistd.h>
                  #include <sys/socket.h>
                  $NXT_SYS_FILIO_H
                  #include <sys/ioctl.h>

                  int main() {
                      int  nb;

                      nb = 0;
                      ioctl(-1, FIONBIO, &nb);
                      return 0;
                  }"
. auto/feature


# socket(SOCK_NONBLOCK), Linux 2.6.27/glibc 2.10, NetBSD 6.0, FreeBSD 9.2.

nxt_feature="socket(SOCK_NONBLOCK)"
nxt_feature_name=NXT_HAVE_SOCK_NONBLOCK
nxt_feature_run=
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#define _GNU_SOURCE
                  #include <sys/socket.h>

                  int main() {
                      socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, 0);
                      return 0;
                  }"
. auto/feature


# accept4(), Linux 2.6.28/glibc 2.10, NetBSD 6.0, FreeBSD 9.2.

nxt_feature="accept4()"
nxt_feature_name=NXT_HAVE_ACCEPT4
nxt_feature_run=
nxt_feature_incs=
nxt_feature_libs=
nxt_feature_test="#define _GNU_SOURCE
                  #include <stdlib.h>
                  #include <sys/socket.h>

                  int main() {
                      accept4(0, NULL, NULL, SOCK_NONBLOCK);
                      return 0;
                  }"
. auto/feature