Lines Matching refs:uh_len
63 const unsigned int uh_len = sizeof(uh);
65 char *const buf = tail_alloc(uh_len + extra_len);
66 memcpy(buf + extra_len, &uh, uh_len);
68 sys_send(fd, buf + extra_len, uh_len);
80 ntohl(uh.filter_tag_bloom_lo), uh_len, errstr);
82 memcpy(buf, &uh, uh_len);
83 memcpy(buf + uh_len, extra, extra_len);
84 sys_send(fd, buf, uh_len + extra_len);
96 print_quoted_memory(buf + uh_len, extra_len);
98 uh_len + extra_len, errstr);
100 memcpy(buf + extra_len + 1, &uh, uh_len - 1);
101 sys_send(fd, buf + extra_len + 1, uh_len);
103 print_quoted_memory(&uh, MIN(uh_len - 1, DEFAULT_STRLEN));
105 (uh_len - 1 > DEFAULT_STRLEN ? "..." : ""),
106 uh_len, errstr);
122 const unsigned int uh_len = sizeof(uh);
125 memcpy(p, &uh, uh_len);
127 sys_send(fd, p, uh_len);
129 print_quoted_memory(&uh, MIN(uh_len, DEFAULT_STRLEN));
131 (uh_len > DEFAULT_STRLEN ? "..." : ""),
132 uh_len, errstr);