conv.xfr16BitInt(d_fudge);
uint16_t size=d_mac.size();
conv.xfr16BitInt(size);
- conv.xfrBlob(d_mac, size);
+ if (size>0) conv.xfrBlobNoSpaces(d_mac, size);
conv.xfr16BitInt(d_origID);
conv.xfr16BitInt(d_eRcode);
- size=d_otherData.size();
+ size=d_otherData.size();
conv.xfr16BitInt(size);
- if (size>0) conv.xfrBlob(d_otherData, size);
+ if (size>0) conv.xfrBlobNoSpaces(d_otherData, size);
);
MXRecordContent::MXRecordContent(uint16_t preference, const string& mxname) : DNSRecordContent(QType::MX), d_preference(preference), d_mxname(mxname)