HomeSort by relevance Sort by last modified time
    Searched refs:protoinfo (Results 1 - 11 of 11) sorted by null

  /external/libnetfilter_conntrack/src/conntrack/
copy.c 204 dest->protoinfo.tcp.state = orig->protoinfo.tcp.state;
210 dest->protoinfo.tcp.flags[__DIR_ORIG].value =
211 orig->protoinfo.tcp.flags[__DIR_ORIG].value;
217 dest->protoinfo.tcp.flags[__DIR_REPL].value =
218 orig->protoinfo.tcp.flags[__DIR_REPL].value;
224 dest->protoinfo.tcp.flags[__DIR_ORIG].mask =
225 orig->protoinfo.tcp.flags[__DIR_ORIG].mask;
231 dest->protoinfo.tcp.flags[__DIR_REPL].mask =
232 orig->protoinfo.tcp.flags[__DIR_REPL].mask
    [all...]
getter.c 159 return &ct->protoinfo.tcp.state;
164 return &ct->protoinfo.tcp.flags[__DIR_ORIG].value;
169 return &ct->protoinfo.tcp.flags[__DIR_ORIG].mask;
174 return &ct->protoinfo.tcp.flags[__DIR_REPL].value;
179 return &ct->protoinfo.tcp.flags[__DIR_REPL].mask;
184 return &ct->protoinfo.tcp.wscale[__DIR_ORIG];
189 return &ct->protoinfo.tcp.wscale[__DIR_REPL];
194 return &ct->protoinfo.sctp.state;
199 return &ct->protoinfo.sctp.vtag[__DIR_ORIG];
204 return &ct->protoinfo.sctp.vtag[__DIR_REPL]
    [all...]
setter.c 192 ct->protoinfo.tcp.state = *((uint8_t *) value);
198 ct->protoinfo.tcp.flags[__DIR_ORIG].value = *((uint8_t *) value);
204 ct->protoinfo.tcp.flags[__DIR_ORIG].mask = *((uint8_t *) value);
210 ct->protoinfo.tcp.flags[__DIR_REPL].value = *((uint8_t *) value);
216 ct->protoinfo.tcp.flags[__DIR_REPL].mask = *((uint8_t *) value);
222 ct->protoinfo.sctp.state = *((uint8_t *) value);
228 ct->protoinfo.sctp.vtag[__DIR_ORIG] = *((uint32_t *) value);
234 ct->protoinfo.sctp.vtag[__DIR_REPL] = *((uint32_t *) value);
399 ct->protoinfo.dccp.state = *((uint8_t *) value);
405 ct->protoinfo.dccp.role = *((uint8_t *) value)
    [all...]
build_mnl.c 136 ct->protoinfo.tcp.state);
142 &ct->protoinfo.tcp.flags[0]);
148 &ct->protoinfo.tcp.flags[1]);
152 ct->protoinfo.tcp.wscale[__DIR_ORIG]);
156 ct->protoinfo.tcp.wscale[__DIR_REPL]);
173 ct->protoinfo.sctp.state);
177 htonl(ct->protoinfo.sctp.vtag[__DIR_ORIG]));
181 htonl(ct->protoinfo.sctp.vtag[__DIR_REPL]));
197 ct->protoinfo.dccp.state);
201 ct->protoinfo.dccp.role)
    [all...]
parse.c 216 ct->protoinfo.tcp.state =
222 memcpy(&ct->protoinfo.tcp.wscale[__DIR_ORIG],
229 memcpy(&ct->protoinfo.tcp.wscale[__DIR_REPL],
236 memcpy(&ct->protoinfo.tcp.flags[0],
244 memcpy(&ct->protoinfo.tcp.flags[1],
260 ct->protoinfo.sctp.state =
266 ct->protoinfo.sctp.vtag[__DIR_ORIG] =
272 ct->protoinfo.sctp.vtag[__DIR_REPL] =
287 ct->protoinfo.dccp.state =
292 ct->protoinfo.dccp.role
    [all...]
compare.c 360 return (ct1->protoinfo.tcp.state == ct2->protoinfo.tcp.state);
368 return (ct1->protoinfo.sctp.state == ct2->protoinfo.sctp.state);
376 return (ct1->protoinfo.dccp.state == ct2->protoinfo.dccp.state);
build.c 130 &ct->protoinfo.tcp.state,
136 &ct->protoinfo.tcp.flags[0],
142 &ct->protoinfo.tcp.flags[1],
147 &ct->protoinfo.tcp.wscale[__DIR_ORIG],
152 &ct->protoinfo.tcp.wscale[__DIR_REPL],
169 &ct->protoinfo.sctp.state,
174 htonl(ct->protoinfo.sctp.vtag[__DIR_ORIG]));
178 htonl(ct->protoinfo.sctp.vtag[__DIR_REPL]));
194 &ct->protoinfo.dccp.state,
199 &ct->protoinfo.dccp.role
    [all...]
parse_mnl.c 338 ct->protoinfo.tcp.state =
344 memcpy(&ct->protoinfo.tcp.wscale[__DIR_ORIG],
351 memcpy(&ct->protoinfo.tcp.wscale[__DIR_REPL],
358 memcpy(&ct->protoinfo.tcp.flags[0],
366 memcpy(&ct->protoinfo.tcp.flags[1],
409 ct->protoinfo.sctp.state =
415 ct->protoinfo.sctp.vtag[__DIR_ORIG] =
421 ct->protoinfo.sctp.vtag[__DIR_REPL] =
462 ct->protoinfo.dccp.state = mnl_attr_get_u8(tb[CTA_PROTOINFO_DCCP_STATE]);
466 ct->protoinfo.dccp.role = mnl_attr_get_u8(tb[CTA_PROTOINFO_DCCP_ROLE])
    [all...]
snprintf_default.c 44 ct->protoinfo.tcp.state < TCP_CONNTRACK_MAX ?
45 states[ct->protoinfo.tcp.state] :
54 ct->protoinfo.sctp.state < SCTP_CONNTRACK_MAX ?
55 sctp_states[ct->protoinfo.sctp.state] :
64 ct->protoinfo.dccp.state < DCCP_CONNTRACK_MAX ?
65 sctp_states[ct->protoinfo.dccp.state] :
snprintf_xml.c 434 ct->protoinfo.tcp.state < TCP_CONNTRACK_MAX ?
435 states[ct->protoinfo.tcp.state] :
442 ct->protoinfo.sctp.state < SCTP_CONNTRACK_MAX ?
443 states[ct->protoinfo.sctp.state] :
450 ct->protoinfo.sctp.state < DCCP_CONNTRACK_MAX ?
451 states[ct->protoinfo.dccp.state] :
  /external/libnetfilter_conntrack/include/internal/
object.h 176 union __nfct_protoinfo protoinfo; member in struct:nf_conntrack

Completed in 149 milliseconds