HomeSort by: relevance | last modified time | path
    Searched defs:rdata_srv_t (Results 1 - 1 of 1) sorted by relevancy

  /src/external/apache2/mDNSResponder/dist/mDNSShared/dns_objects/utilities/
rdata_parser.c 142 } rdata_srv_t; typedef in typeref:struct:rdata_srv_s
144 check_compile_time(offsetof(rdata_srv_t, priority) == 0);
145 check_compile_time(offsetof(rdata_srv_t, weight) == 2);
146 check_compile_time(offsetof(rdata_srv_t, port) == 4);
147 check_compile_time(offsetof(rdata_srv_t, target) == 6);
148 check_compile_time(sizeof(rdata_srv_t) == 6);
163 return get_uint16_from_bytes(rdata + offsetof(rdata_srv_t, weight));
171 return get_uint16_from_bytes(rdata + offsetof(rdata_srv_t, port));
179 return rdata + offsetof(rdata_srv_t, target);
187 return rdata_len > offsetof(rdata_srv_t, target)
    [all...]

Completed in 62 milliseconds