Lines Matching defs:tcode
1525 mDNSexport void DNSDigest_SignMessage(DNSMessage *msg, mDNSu8 **end, DomainAuthInfo *info, mDNSu16 tcode)
1638 // digest error (tcode) and other data len (zero) - we'll add them to the rdata later
1639 buf.b[0] = (mDNSu8)((tcode >> 8) & 0xff);
1640 buf.b[1] = (mDNSu8)( tcode & 0xff);
1681 rdata[2] = (mDNSu8)((tcode >> 8) & 0xff);
1682 rdata[3] = (mDNSu8)( tcode & 0xff);
1697 const LargeCacheRecord *const lcr, const DomainAuthInfo *const info, mDNSu16 *const rcode, mDNSu16 *const tcode)
1732 *tcode = TSIG_ErrBadKey;
1746 *tcode = TSIG_ErrBadTime;
1772 *tcode = TSIG_ErrBadTime;
1894 *tcode = TSIG_ErrBadSig;
1964 mDNSu16 tcode;
1965 verified = DNSDigest_VerifyMessage(msg, lastPtr, &lcr, authInfo, &rcode, &tcode);