happyflow for all signle svcparams (now without debug prints)

This commit is contained in:
Tom Carpay 2021-05-20 13:39:24 +02:00
parent 1a28a27637
commit eca19fe1d1
2 changed files with 0 additions and 6 deletions

View file

@ -1331,10 +1331,6 @@ sldns_str2wire_svcparam_key_value(const char *key, size_t key_len,
{
uint16_t svcparamkey = sldns_str2wire_svcparam_key_lookup(key, key_len);
fprintf(stderr, "key: %s\n", key);
fprintf(stderr, "val: %s\n", val);
switch (svcparamkey) {
case SVCB_KEY_PORT:
return sldns_str2wire_svcparam_port(val, rd, rd_len);

View file

@ -1101,8 +1101,6 @@ int sldns_wire2str_svcparam_ech2str(char** s,
/* b64_ntop_calculate size includes null at the end */
size = sldns_b64_ntop_calculate_size(data_len);
fprintf(stderr, "size %d\n", size);
// @TODO store return value?
sldns_b64_ntop(data, data_len, *s, *slen);
(*s) += size;