Searched refs:bitmaplen (Results 1 – 3 of 3) sorted by relevance
/illumos-gate/usr/src/contrib/mDNSResponder/mDNSCore/ |
H A D | DNSCommon.c | 256 mDNSlocal void PrintTypeBitmap(const mDNSu8 *bmap, int bitmaplen, char *const buffer, mDNSu32 lengt… in PrintTypeBitmap() argument 260 while (bitmaplen > 0) in PrintTypeBitmap() 264 if (bitmaplen < 3) in PrintTypeBitmap() 266 LogMsg("PrintTypeBitmap: malformed bitmap, bitmaplen %d short", bitmaplen); in PrintTypeBitmap() 272 bitmaplen -= 2; in PrintTypeBitmap() 273 if (bitmaplen < wlen || wlen < 1 || wlen > 32) in PrintTypeBitmap() 275 LogInfo("PrintTypeBitmap: malformed nsec, bitmaplen %d wlen %d", bitmaplen, wlen); in PrintTypeBitmap() 290 bitmaplen -= wlen; in PrintTypeBitmap() 394 int len, bitmaplen; in GetRRDisplayString_rdb() local 397 bitmaplen = rr->rdlength - len; in GetRRDisplayString_rdb() [all …]
|
H A D | DNSCommon.h | 245 …ecord *const rr, mDNSu8 **salt, int *hashLength, mDNSu8 **nxtName, int *bitmaplen, mDNSu8 **bitmap… 278 extern mDNSBool BitmapTypeCheck(mDNSu8 *bmap, int bitmaplen, mDNSu16 type);
|
/illumos-gate/usr/src/contrib/mDNSResponder/Clients/ |
H A D | dns-sd.c | 975 int len, bitmaplen; in ParseDNSSECRecords() local 984 bitmaplen = rdlen - len; in ParseDNSSECRecords() 987 while (bitmaplen > 0) in ParseDNSSECRecords() 991 if (bitmaplen < 3) in ParseDNSSECRecords() 993 printf("Case NSEC: malformed nsec, bitmaplen %d short\n", bitmaplen); in ParseDNSSECRecords() 999 bitmaplen -= 2; in ParseDNSSECRecords() 1000 if (bitmaplen < wlen || wlen < 1 || wlen > 32) in ParseDNSSECRecords() 1002 printf("Case NSEC: malformed nsec, bitmaplen %d wlen %d\n", bitmaplen, wlen); in ParseDNSSECRecords() 1017 bitmaplen -= wlen; in ParseDNSSECRecords()
|