Home | History | Annotate | Download | only in ServiceRegistration

Lines Matching defs:towire

143     dns_towire_state_t towire;
146 memset(&towire, 0, sizeof(towire));
147 towire.p = buffer;
148 towire.lim = towire.p + sizeof(buffer);
154 dns_u16_to_wire(&towire, rrtype);
155 dns_u16_to_wire(&towire, rdlength);
156 dns_rdata_raw_data_to_wire(&towire, rdata, rdlength);
157 dns_rdata_raw_data_to_wire(&towire, port, 2);
159 if (towire.error) {
161 strerror(towire.error), towire.line, towire.p, towire.lim, buffer);
165 length = towire.p - buffer;