OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:encapflags
(Results
1 - 4
of
4
) sorted by null
/external/iproute2/ip/
link_gre.c
94
__u16
encapflags
= 0;
local
162
encapflags
= rta_getattr_u16(greinfo[IFLA_GRE_ENCAP_FLAGS]);
312
encapflags
|= TUNNEL_ENCAP_FLAG_CSUM;
314
encapflags
&= ~TUNNEL_ENCAP_FLAG_CSUM;
316
encapflags
|= TUNNEL_ENCAP_FLAG_CSUM6;
318
encapflags
|= ~TUNNEL_ENCAP_FLAG_CSUM6;
320
encapflags
|= TUNNEL_ENCAP_FLAG_REMCSUM;
322
encapflags
|= ~TUNNEL_ENCAP_FLAG_REMCSUM;
380
addattr16(n, 1024, IFLA_GRE_ENCAP_FLAGS,
encapflags
);
link_gre6.c
104
__u16
encapflags
= TUNNEL_ENCAP_FLAG_CSUM6;
local
173
encapflags
= rta_getattr_u16(greinfo[IFLA_GRE_ENCAP_FLAGS]);
339
encapflags
|= TUNNEL_ENCAP_FLAG_CSUM;
341
encapflags
&= ~TUNNEL_ENCAP_FLAG_CSUM;
343
encapflags
|= TUNNEL_ENCAP_FLAG_CSUM6;
345
encapflags
&= ~TUNNEL_ENCAP_FLAG_CSUM6;
347
encapflags
|= TUNNEL_ENCAP_FLAG_REMCSUM;
349
encapflags
&= ~TUNNEL_ENCAP_FLAG_REMCSUM;
392
addattr16(n, 1024, IFLA_GRE_ENCAP_FLAGS,
encapflags
);
link_iptnl.c
104
__u16
encapflags
= 0;
local
164
encapflags
= rta_getattr_u16(iptuninfo[IFLA_IPTUN_ENCAP_FLAGS]);
294
encapflags
|= TUNNEL_ENCAP_FLAG_CSUM;
296
encapflags
&= ~TUNNEL_ENCAP_FLAG_CSUM;
298
encapflags
|= TUNNEL_ENCAP_FLAG_CSUM6;
300
encapflags
&= ~TUNNEL_ENCAP_FLAG_CSUM6;
302
encapflags
|= TUNNEL_ENCAP_FLAG_REMCSUM;
304
encapflags
&= ~TUNNEL_ENCAP_FLAG_REMCSUM;
359
addattr16(n, 1024, IFLA_IPTUN_ENCAP_FLAGS,
encapflags
);
link_ip6tnl.c
99
__u16
encapflags
= TUNNEL_ENCAP_FLAG_CSUM6;
local
291
encapflags
|= TUNNEL_ENCAP_FLAG_CSUM;
293
encapflags
&= ~TUNNEL_ENCAP_FLAG_CSUM;
295
encapflags
|= TUNNEL_ENCAP_FLAG_CSUM6;
297
encapflags
&= ~TUNNEL_ENCAP_FLAG_CSUM6;
299
encapflags
|= TUNNEL_ENCAP_FLAG_REMCSUM;
301
encapflags
|= ~TUNNEL_ENCAP_FLAG_REMCSUM;
324
addattr16(n, 1024, IFLA_IPTUN_ENCAP_FLAGS,
encapflags
);
Completed in 114 milliseconds