Lines Matching refs:data_buffer
182 ldns_buffer *data_buffer = NULL; in ldns_tsig_mac_new() local
201 data_buffer = ldns_buffer_new(LDNS_MAX_PACKETLEN); in ldns_tsig_mac_new()
202 if (!data_buffer) { in ldns_tsig_mac_new()
208 (void) ldns_rdf2buffer_wire(data_buffer, orig_mac_rdf); in ldns_tsig_mac_new()
210 ldns_buffer_write(data_buffer, pkt_wire, pkt_wire_size); in ldns_tsig_mac_new()
213 (void)ldns_rdf2buffer_wire(data_buffer, in ldns_tsig_mac_new()
215 ldns_buffer_write_u16(data_buffer, LDNS_RR_CLASS_ANY); in ldns_tsig_mac_new()
216 ldns_buffer_write_u32(data_buffer, 0); in ldns_tsig_mac_new()
218 (void)ldns_rdf2buffer_wire(data_buffer, in ldns_tsig_mac_new()
221 (void)ldns_rdf2buffer_wire(data_buffer, time_signed_rdf); in ldns_tsig_mac_new()
222 (void)ldns_rdf2buffer_wire(data_buffer, fudge_rdf); in ldns_tsig_mac_new()
224 (void)ldns_rdf2buffer_wire(data_buffer, error_rdf); in ldns_tsig_mac_new()
225 (void)ldns_rdf2buffer_wire(data_buffer, other_data_rdf); in ldns_tsig_mac_new()
228 wireformat = (char *) data_buffer->_data; in ldns_tsig_mac_new()
229 wiresize = (int) ldns_buffer_position(data_buffer); in ldns_tsig_mac_new()
278 ldns_buffer_free(data_buffer); in ldns_tsig_mac_new()