Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:tha

71 struct tha {
84 struct tha addr;
316 struct tha tha;
324 memset(&tha, 0, sizeof(tha));
336 memcpy(&tha.src, dst, sizeof ip6->ip6_dst);
337 memcpy(&tha.dst, src, sizeof ip6->ip6_src);
338 tha.port = dport << 16 | sport;
340 memcpy(&tha.dst, dst, sizeof ip6->ip6_dst);
341 memcpy(&tha.src, src, sizeof ip6->ip6_src);
342 tha.port = sport << 16 | dport;
354 memcpy(&tha.src, dst, sizeof ip->ip_dst);
355 memcpy(&tha.dst, src, sizeof ip->ip_src);
356 tha.port = dport << 16 | sport;
358 memcpy(&tha.dst, dst, sizeof ip->ip_dst);
359 memcpy(&tha.src, src, sizeof ip->ip_src);
360 tha.port = sport << 16 | dport;
374 memcpy(&tha.src, dst, sizeof ip->ip_dst);
375 memcpy(&tha.dst, src, sizeof ip->ip_src);
376 tha.port = dport << 16 | sport;
378 memcpy(&tha.dst, dst, sizeof ip->ip_dst);
379 memcpy(&tha.src, src, sizeof ip->ip_src);
380 tha.port = sport << 16 | dport;
385 for (th = &tcp_seq_hash[tha.port % TSEQ_HASHSIZE];
387 if (memcmp((char *)&tha, (char *)&th->addr,
399 th->addr = tha;