Lines Matching defs:towire
67 dns_towire_state_t towire;
68 memset(&towire, 0, sizeof(towire));
70 towire.p = &wire->data[0]; // We start storing RR data here.
71 towire.lim = &wire->data[DNS_DATA_SIZE]; // This is the limit to how much we can store.
72 towire.message = wire;
81 dns_full_name_to_wire(NULL, &towire, "_airplay._tcp.local.");
82 dns_u16_to_wire(&towire, dns_rrtype_ptr);
83 dns_u16_to_wire(&towire, dns_qclass_in);
89 towire.p = &wire->data[0]; // We start storing RR data here.
90 towire.lim = &wire->data[DNS_DATA_SIZE]; // This is the limit to how much we can store.
91 towire.message = wire;
96 dns_full_name_to_wire(NULL, &towire, "_companion-link._tcp.local.");
97 dns_u16_to_wire(&towire, dns_rrtype_ptr);
98 dns_u16_to_wire(&towire, dns_qclass_in);