Lines Matching refs:this
22 this string flow;
23 this string local;
24 this string remote;
25 this u_char local6;
26 this u_char recv;
27 this u_char remote6;
28 this uint16_t length;
29 this uint16_t lport;
30 this uint16_t rport;
39 this->recv = probename == "receive" ? 1 : 0;
40 this->flow = this->recv ? "<-" : "->";
45 this->local = this->recv ? args[2]->ip_daddr : args[2]->ip_saddr;
46 this->remote = this->recv ? args[2]->ip_saddr : args[2]->ip_daddr;
51 this->length = (uint16_t)args[4]->udp_length;
52 this->lport = this->recv ? args[4]->udp_dport : args[4]->udp_sport;
53 this->rport = this->recv ? args[4]->udp_sport : args[4]->udp_dport;
58 this->local6 = strstr(this->local, ":") != NULL ? 1 : 0;
59 this->remote6 = strstr(this->remote, ":") != NULL ? 1 : 0;
60 this->local = strjoin(strjoin(this->local6 ? "[" : "",
61 this->local), this->local6 ? "]" : "");
62 this->remote = strjoin(strjoin(this->remote6 ? "[" : "",
63 this->remote), this->remote6 ? "]" : "");
77 this->local, this->lport,
78 this->flow,
79 this->remote, this->rport,
80 this->length,
81 this->length == 1 ? "" : "s");