Lines Matching +full:address +full:- +full:width
67 .Bl -tag -width "uintptr_t pkt_addr" -offset indent
77 .Bl -tag -width "uintptr_t cs_addr" -offset indent
93 .Bl -tag -width "uint32_t ip_plength" -offset indent
100 IP source address.
102 IP destination address.
113 .Bl -tag -width "uintptr_t if_addr" -offset indent
139 .Bl -tag -width "uint16_t ipv4_checksum" -offset indent
144 The IP header length, including options, in 32-bit words.
158 Next-level protocol ID.
168 IPv4 source address.
170 IPv4 destination address.
172 A string representation of the source address.
174 A string representation of the destination address.
188 .Bl -tag -width "uint16_t ipv4_checksum" -offset indent
206 IPv6 source address.
208 IPv6 destination address.
210 A string representation of the source address.
212 A string representation of the destination address.
217 .Bl -tag -width "/usr/lib/dtrace/ip.d" -compact
224 The following script counts received packets by remote host address.
225 .Bd -literal -offset indent
228 @num[args[2]->ip_saddr] = count();
234 .Bd -literal -offset indent
240 printf(" %10s %30s %-30s %8s %6s\\n", "DELTA(us)", "SOURCE",
247 this->elapsed = (timestamp - last) / 1000;
248 printf(" %10d %30s -> %-30s %8s %6d\\n", this->elapsed,
249 args[2]->ip_saddr, args[2]->ip_daddr, args[3]->if_name,
250 args[2]->ip_plength);
256 this->elapsed = (timestamp - last) / 1000;
257 printf(" %10d %30s <- %-30s %8s %6d\\n", this->elapsed,
258 args[2]->ip_daddr, args[2]->ip_saddr, args[3]->if_name,
259 args[2]->ip_plength);