Lines Matching defs:this

42 	const struct nfct_attr_grp_ipv4 *this = value;
43 ct->head.orig.src.v4 = this->src;
44 ct->head.orig.dst.v4 = this->dst;
50 const struct nfct_attr_grp_ipv4 *this = value;
51 ct->repl.src.v4 = this->src;
52 ct->repl.dst.v4 = this->dst;
58 const struct nfct_attr_grp_ipv6 *this = value;
59 memcpy(&ct->head.orig.src.v6, this->src, sizeof(uint32_t)*4);
60 memcpy(&ct->head.orig.dst.v6, this->dst, sizeof(uint32_t)*4);
66 const struct nfct_attr_grp_ipv6 *this = value;
67 memcpy(&ct->repl.src.v6, this->src, sizeof(uint32_t)*4);
68 memcpy(&ct->repl.dst.v6, this->dst, sizeof(uint32_t)*4);
74 const struct nfct_attr_grp_port *this = value;
75 ct->head.orig.l4src.all = this->sport;
76 ct->head.orig.l4dst.all = this->dport;
81 const struct nfct_attr_grp_port *this = value;
82 ct->repl.l4src.all = this->sport;
83 ct->repl.l4dst.all = this->dport;
89 const struct nfct_attr_grp_icmp *this = value;
91 ct->head.orig.l4dst.icmp.type = this->type;
95 rtype = invmap_icmp[this->type];
99 rtype = invmap_icmpv6[this->type - 128];
111 ct->head.orig.l4dst.icmp.code = this->code;
112 ct->repl.l4dst.icmp.code = this->code;
114 ct->head.orig.l4src.icmp.id = this->id;
115 ct->repl.l4src.icmp.id = this->id;
120 const struct nfct_attr_grp_ipv4 *this = value;
121 ct->master.src.v4 = this->src;
122 ct->master.dst.v4 = this->dst;
128 const struct nfct_attr_grp_ipv6 *this = value;
129 memcpy(&ct->master.src.v6, this->src, sizeof(uint32_t)*4);
130 memcpy(&ct->master.dst.v6, this->dst, sizeof(uint32_t)*4);
136 const struct nfct_attr_grp_port *this = value;
137 ct->master.l4src.all = this->sport;
138 ct->master.l4dst.all = this->dport;