Home | History | Annotate | Download | only in mDNSCore

Lines Matching refs:RDataBody

833 // The RDataBody union defines the common rdata types that fit into our 264-byte limit
843 rdataOPT opt[2]; // For EDNS0 OPT record; RDataBody may contain multiple variable-length rdataOPT objects packed together
845 } RDataBody;
853 rdataSOA soa; // This is large; not included in the normal RDataBody definition
856 rdataRP rp; // This is large; not included in the normal RDataBody definition
857 rdataPX px; // This is large; not included in the normal RDataBody definition
860 rdataOPT opt[2]; // For EDNS0 OPT record; RDataBody may contain multiple variable-length rdataOPT objects packed together
866 mDNSu16 MaxRDLength; // Amount of storage allocated for rdata (usually sizeof(RDataBody))
867 mDNSu16 padding; // So that RDataBody is aligned on 32-bit boundary
868 RDataBody u;
872 #define sizeofRDataHeader (sizeof(RData) - sizeof(RDataBody))
2372 extern char *GetRRDisplayString_rdb(const ResourceRecord *const rr, const RDataBody *const rd1, char *const buffer);
2937 char sizecheck_RDataBody [(sizeof(RDataBody) == 264) ? 1 : -1];