Lines Matching refs:data_buffer
170 ldns_buffer *data_buffer = NULL; in ldns_tsig_mac_new() local
189 data_buffer = ldns_buffer_new(LDNS_MAX_PACKETLEN); in ldns_tsig_mac_new()
190 if (!data_buffer) { in ldns_tsig_mac_new()
196 (void) ldns_rdf2buffer_wire(data_buffer, orig_mac_rdf); in ldns_tsig_mac_new()
198 ldns_buffer_write(data_buffer, pkt_wire, pkt_wire_size); in ldns_tsig_mac_new()
201 (void)ldns_rdf2buffer_wire(data_buffer, in ldns_tsig_mac_new()
203 ldns_buffer_write_u16(data_buffer, LDNS_RR_CLASS_ANY); in ldns_tsig_mac_new()
204 ldns_buffer_write_u32(data_buffer, 0); in ldns_tsig_mac_new()
206 (void)ldns_rdf2buffer_wire(data_buffer, in ldns_tsig_mac_new()
209 (void)ldns_rdf2buffer_wire(data_buffer, time_signed_rdf); in ldns_tsig_mac_new()
210 (void)ldns_rdf2buffer_wire(data_buffer, fudge_rdf); in ldns_tsig_mac_new()
212 (void)ldns_rdf2buffer_wire(data_buffer, error_rdf); in ldns_tsig_mac_new()
213 (void)ldns_rdf2buffer_wire(data_buffer, other_data_rdf); in ldns_tsig_mac_new()
216 wireformat = (char *) data_buffer->_data; in ldns_tsig_mac_new()
217 wiresize = (int) ldns_buffer_position(data_buffer); in ldns_tsig_mac_new()
266 ldns_buffer_free(data_buffer); in ldns_tsig_mac_new()