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

  /external/libnetfilter_conntrack/src/conntrack/
grp_setter.c 76 ct->head.orig.l4dst.all = this->dport;
83 ct->repl.l4dst.all = this->dport;
91 ct->head.orig.l4dst.icmp.type = this->type;
107 ct->repl.l4dst.icmp.type = rtype - 1;
109 ct->repl.l4dst.icmp.type = 255; /* -EINVAL */
111 ct->head.orig.l4dst.icmp.code = this->code;
112 ct->repl.l4dst.icmp.code = this->code;
138 ct->master.l4dst.all = this->dport;
grp_getter.c 44 this->dport = ct->head.orig.l4dst.all;
51 this->dport = ct->repl.l4dst.all;
57 this->type = ct->head.orig.l4dst.icmp.type;
58 this->code = ct->head.orig.l4dst.icmp.code;
80 this->dport = ct->master.l4dst.all;
objopt.c 40 this->l4src.all = other->l4dst.all;
41 this->l4dst.all = other->l4src.all;
100 ct->snat.l4min.all = ct->repl.l4dst.tcp.port;
102 ct->repl.l4dst.tcp.port =
112 ct->head.orig.l4dst.tcp.port;
192 ct->repl.l4dst.tcp.port !=
201 ct->head.orig.l4dst.tcp.port);
compare.c 57 return (ct1->head.orig.l4dst.icmp.type ==
58 ct2->head.orig.l4dst.icmp.type);
66 return (ct1->head.orig.l4dst.icmp.code ==
67 ct2->head.orig.l4dst.icmp.code);
83 return (ct1->head.orig.l4dst.all == ct2->head.orig.l4dst.all);
204 return (ct1->repl.l4dst.all == ct2->repl.l4dst.all);
copy.c 77 dest->head.orig.l4dst.all = orig->head.orig.l4dst.all;
89 dest->repl.l4dst.all = orig->repl.l4dst.all;
107 dest->head.orig.l4dst.icmp.type =
108 orig->head.orig.l4dst.icmp.type;
115 dest->head.orig.l4dst.icmp.code =
116 orig->head.orig.l4dst.icmp.code;
186 dest->master.l4dst.all = orig->master.l4dst.all
    [all...]
getter.c 59 return &ct->head.orig.l4dst.all;
69 return &ct->repl.l4dst.all;
84 return &ct->head.orig.l4dst.icmp.type;
89 return &ct->head.orig.l4dst.icmp.code;
144 return &ct->master.l4dst.all;
setter.c 97 ct->head.orig.l4dst.all = *((uint16_t *) value);
109 ct->repl.l4dst.all = *((uint16_t *) value);
129 ct->head.orig.l4dst.icmp.type = *((uint8_t *) value);
145 ct->repl.l4dst.icmp.type = rtype - 1;
147 ct->repl.l4dst.icmp.type = 255; /* will fail with -EINVAL */
154 ct->head.orig.l4dst.icmp.code = *((uint8_t *) value);
155 ct->repl.l4dst.icmp.code = *((uint8_t *) value);
338 ct->master.l4dst.all = *((uint16_t *) value);
build_mnl.c 63 mnl_attr_put_u16(nlh, CTA_PROTO_DST_PORT, t->l4dst.tcp.port);
66 mnl_attr_put_u8(nlh, CTA_PROTO_ICMP_CODE, t->l4dst.icmp.code);
67 mnl_attr_put_u8(nlh, CTA_PROTO_ICMP_TYPE, t->l4dst.icmp.type);
71 mnl_attr_put_u8(nlh, CTA_PROTO_ICMPV6_CODE, t->l4dst.icmp.code);
72 mnl_attr_put_u8(nlh, CTA_PROTO_ICMPV6_TYPE, t->l4dst.icmp.type);
parse.c 129 tuple->l4dst.tcp.port =
145 tuple->l4dst.icmp.type =
151 tuple->l4dst.icmp.code =
163 tuple->l4dst.icmp.type =
169 tuple->l4dst.icmp.code =
snprintf_default.c 153 ntohs(tuple->l4dst.tcp.port));
158 ntohs(tuple->l4dst.all));
165 tuple->l4dst.icmp.type,
166 tuple->l4dst.icmp.code,
build.c 61 &t->l4dst.tcp.port, sizeof(uint16_t));
66 &t->l4dst.icmp.code, sizeof(uint8_t));
68 &t->l4dst.icmp.type, sizeof(uint8_t));
75 &t->l4dst.icmp.code, sizeof(uint8_t));
77 &t->l4dst.icmp.type, sizeof(uint8_t));
parse_mnl.c 189 tuple->l4dst.tcp.port =
205 tuple->l4dst.icmp.type =
211 tuple->l4dst.icmp.code =
223 tuple->l4dst.icmp.type =
229 tuple->l4dst.icmp.code =
snprintf_xml.c 142 ntohs(tuple->l4dst.tcp.port));
153 ntohs(tuple->l4dst.all));
  /external/libnetfilter_conntrack/include/internal/
object.h 113 union __nfct_l4_dst l4dst; member in struct:__nfct_tuple

Completed in 62 milliseconds