/bind-9.6-ESV-R11/lib/dns/include/dns/ |
H A D | dispatch.h | 88 isc_uint32_t attributes; /*%< mirrored from socket.h */ member in struct:dns_dispatchevent 246 unsigned int attributes, unsigned int mask, 265 *\li (attributes & DNS_DISPATCHATTR_TCP) == 0 278 unsigned int attributes, dns_dispatch_t **dispp); 312 *\li attributes includes #DNS_DISPATCHATTR_TCP and does not include 455 * Return the attributes (DNS_DISPATCHATTR_xxx) of this dispatch. Only the 456 * non-changeable attributes are expected to be referenced by the caller. 464 unsigned int attributes, unsigned int mask); 467 * "attributes". 472 * new = (old & ~mask) | (attributes [all...] |
H A D | name.h | 115 unsigned int attributes; member in struct:dns_name 201 * \li + Of the attributes associated with 'name', all are retained except 1281 _n->attributes = 0; \ 1293 (n)->attributes &= ~DNS_NAMEATTR_ABSOLUTE; \ 1302 (((n)->attributes & DNS_NAMEATTR_ABSOLUTE) != 0 ? ISC_TRUE : ISC_FALSE)
|
H A D | validator.h | 132 unsigned int attributes; member in struct:dns_validator
|
H A D | rbt.h | 96 * but in the case of "attributes" the field is wider to accommodate 100 * another bit for "attributes", which doesn't yet need any more). 108 unsigned int attributes : 4; /*%< range is 0..2 */ member in struct:dns_rbtnode
|
H A D | rdataset.h | 142 * attributes 144 unsigned int attributes; member in struct:dns_rdataset 154 * Only valid if DNS_RDATASETATTR_RESIGN is set in attributes.
|
H A D | view.h | 36 * Views start out "unfrozen". In this state, core attributes like 40 * "frozen", the core attributes become immutable, and the view module 41 * will ensure synchronization. Freezing allows the view's core attributes 162 unsigned int attributes; member in struct:dns_view
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | name.c | 132 * Note: If additional attributes are added that should not be set for 140 name->attributes &= ~DNS_NAMEATTR_ABSOLUTE; \ 148 ((name->attributes & (DNS_NAMEATTR_READONLY|DNS_NAMEATTR_DYNAMIC)) \ 236 name->attributes = 0; 278 if ((name->attributes & DNS_NAMEATTR_ABSOLUTE) != 0) 300 REQUIRE(name->attributes & DNS_NAMEATTR_ABSOLUTE); 350 REQUIRE(name->attributes & DNS_NAMEATTR_ABSOLUTE); 578 REQUIRE((name1->attributes & DNS_NAMEATTR_ABSOLUTE) == 579 (name2->attributes & DNS_NAMEATTR_ABSOLUTE)); 696 REQUIRE((name1->attributes [all...] |
H A D | db.c | 195 if ((db->attributes & DNS_DBATTR_CACHE) != 0) 210 if ((db->attributes & (DNS_DBATTR_CACHE|DNS_DBATTR_STUB)) == 0) 225 if ((db->attributes & DNS_DBATTR_STUB) != 0) 239 REQUIRE((db->attributes & DNS_DBATTR_CACHE) == 0); 254 REQUIRE((db->attributes & DNS_DBATTR_CACHE) == 0); 336 if ((db->attributes & DNS_DBATTR_CACHE) != 0) 392 REQUIRE((db->attributes & DNS_DBATTR_CACHE) == 0); 406 REQUIRE((db->attributes & DNS_DBATTR_CACHE) == 0); 421 REQUIRE((db->attributes & DNS_DBATTR_CACHE) == 0); 440 REQUIRE((db->attributes [all...] |
H A D | dispatch.c | 135 #define IS_PRIVATE(d) (((d)->attributes & DNS_DISPATCHATTR_PRIVATE) != 0) 235 unsigned int attributes; member in struct:dns_dispatch 321 unsigned int attributes, 1190 if ((disp->attributes & DNS_DISPATCHATTR_EXCLUSIVE) != 0) { 1361 rev->attributes = ev->attributes; 1594 if ((disp->attributes & DNS_DISPATCHATTR_NOLISTEN) != 0) 1603 if ((disp->attributes & DNS_DISPATCHATTR_EXCLUSIVE) != 0 && 2258 unsigned int attributes, unsigned int mask, 2267 attributes 2257 dispatch_find(dns_dispatchmgr_t *mgr, isc_sockaddr_t *local, unsigned int attributes, unsigned int mask, dns_dispatch_t **dispp) argument 2501 dns_dispatch_createtcp(dns_dispatchmgr_t *mgr, isc_socket_t *sock, isc_taskmgr_t *taskmgr, unsigned int buffersize, unsigned int maxbuffers, unsigned int maxrequests, unsigned int buckets, unsigned int increment, unsigned int attributes, dns_dispatch_t **dispp) argument 2592 dns_dispatch_getudp(dns_dispatchmgr_t *mgr, isc_socketmgr_t *sockmgr, isc_taskmgr_t *taskmgr, isc_sockaddr_t *localaddr, unsigned int buffersize, unsigned int maxbuffers, unsigned int maxrequests, unsigned int buckets, unsigned int increment, unsigned int attributes, unsigned int mask, dns_dispatch_t **dispp) argument 2784 dispatch_createudp(dns_dispatchmgr_t *mgr, isc_socketmgr_t *sockmgr, isc_taskmgr_t *taskmgr, isc_sockaddr_t *localaddr, unsigned int maxrequests, unsigned int attributes, dns_dispatch_t **dispp) argument 3390 dns_dispatch_changeattributes(dns_dispatch_t *disp, unsigned int attributes, unsigned int mask) argument [all...] |
H A D | rdataset.c | 74 rdataset->attributes = 0; 102 rdataset->attributes = 0; 129 rdataset->attributes = 0; 226 rdataset->attributes |= DNS_RDATASETATTR_QUESTION; 297 #define WANT_FIXED(r) (((r)->attributes & DNS_RDATASETATTR_FIXEDORDER) != 0) 298 #define WANT_RANDOM(r) (((r)->attributes & DNS_RDATASETATTR_RANDOMIZE) != 0) 342 if ((rdataset->attributes & DNS_RDATASETATTR_QUESTION) != 0) { 347 } else if ((rdataset->attributes & DNS_RDATASETATTR_NEGATIVE) != 0) { 615 REQUIRE((rdataset->attributes & DNS_RDATASETATTR_QUESTION) == 0);
|
H A D | validator.c | 119 #define NEEDNODATA(val) ((val->attributes & VALATTR_NEEDNODATA) != 0) 120 #define NEEDNOQNAME(val) ((val->attributes & VALATTR_NEEDNOQNAME) != 0) 121 #define NEEDNOWILDCARD(val) ((val->attributes & VALATTR_NEEDNOWILDCARD) != 0) 122 #define DLVTRIED(val) ((val->attributes & VALATTR_DLVTRIED) != 0) 123 #define FOUNDNODATA(val) ((val->attributes & VALATTR_FOUNDNODATA) != 0) 124 #define FOUNDNOQNAME(val) ((val->attributes & VALATTR_FOUNDNOQNAME) != 0) 125 #define FOUNDNOWILDCARD(val) ((val->attributes & VALATTR_FOUNDNOWILDCARD) != 0) 126 #define FOUNDCLOSEST(val) ((val->attributes & VALATTR_FOUNDCLOSEST) != 0) 127 #define FOUNDOPTOUT(val) ((val->attributes & VALATTR_FOUNDOPTOUT) != 0) 129 #define SHUTDOWN(v) (((v)->attributes [all...] |
H A D | rdatalist.c | 231 rdataset->attributes |= DNS_RDATASETATTR_NOQNAME; 246 REQUIRE((rdataset->attributes & DNS_RDATASETATTR_NOQNAME) != 0); 322 rdataset->attributes |= DNS_RDATASETATTR_CLOSEST; 337 REQUIRE((rdataset->attributes & DNS_RDATASETATTR_CLOSEST) != 0);
|
H A D | resolver.c | 144 unsigned int attributes; member in struct:query 156 #define RESQUERY_CANCELED(q) (((q)->attributes & \ 195 unsigned int attributes; member in struct:fetchctx 301 #define HAVE_ANSWER(f) (((f)->attributes & FCTX_ATTR_HAVEANSWER) != \ 303 #define GLUING(f) (((f)->attributes & FCTX_ATTR_GLUING) != \ 305 #define ADDRWAIT(f) (((f)->attributes & FCTX_ATTR_ADDRWAIT) != \ 307 #define SHUTTINGDOWN(f) (((f)->attributes & FCTX_ATTR_SHUTTINGDOWN) \ 309 #define WANTCACHE(f) (((f)->attributes & FCTX_ATTR_WANTCACHE) != 0) 310 #define WANTNCACHE(f) (((f)->attributes & FCTX_ATTR_WANTNCACHE) != 0) 311 #define NEEDEDNS0(f) (((f)->attributes [all...] |
H A D | stats.c | 283 dump_rdentry(int rdcounter, isc_uint64_t value, dns_rdatastatstype_t attributes, argument 290 attributes |= DNS_RDATASTATSTYPE_ATTR_OTHERTYPE; 298 attributes);
|
H A D | ncache.c | 175 if ((name->attributes & DNS_NAMEATTR_NCACHE) != 0) { 179 if ((rdataset->attributes & 315 ncrdataset.attributes |= DNS_RDATASETATTR_NEGATIVE; 317 ncrdataset.attributes |= DNS_RDATASETATTR_NXDOMAIN; 319 ncrdataset.attributes |= DNS_RDATASETATTR_OPTOUT; 346 REQUIRE((rdataset->attributes & DNS_RDATASETATTR_NEGATIVE) != 0); 575 REQUIRE((ncacherdataset->attributes & DNS_RDATASETATTR_NEGATIVE) != 0); 652 REQUIRE((ncacherdataset->attributes & DNS_RDATASETATTR_NEGATIVE) != 0); 752 REQUIRE((ncacherdataset->attributes & DNS_RDATASETATTR_NEGATIVE) != 0);
|
H A D | rbtdb.c | 226 isc_uint16_t attributes; member in struct:rdatasetheader 309 (((header)->attributes & RDATASET_ATTR_NONEXISTENT) == 0) 311 (((header)->attributes & RDATASET_ATTR_NONEXISTENT) != 0) 313 (((header)->attributes & RDATASET_ATTR_IGNORE) != 0) 315 (((header)->attributes & RDATASET_ATTR_RETAIN) != 0) 317 (((header)->attributes & RDATASET_ATTR_NXDOMAIN) != 0) 319 (((header)->attributes & RDATASET_ATTR_RESIGN) != 0) 321 (((header)->attributes & RDATASET_ATTR_OPTOUT) != 0) 323 (((header)->attributes & RDATASET_ATTR_NEGATIVE) != 0) 418 unsigned int attributes; member in struct:dns_rbtdb [all...] |
H A D | view.c | 52 #define RESSHUTDOWN(v) (((v)->attributes & DNS_VIEWATTR_RESSHUTDOWN) != 0) 53 #define ADBSHUTDOWN(v) (((v)->attributes & DNS_VIEWATTR_ADBSHUTDOWN) != 0) 54 #define REQSHUTDOWN(v) (((v)->attributes & DNS_VIEWATTR_REQSHUTDOWN) != 0) 143 view->attributes = (DNS_VIEWATTR_RESSHUTDOWN|DNS_VIEWATTR_ADBSHUTDOWN| 509 view->attributes |= DNS_VIEWATTR_RESSHUTDOWN; 533 view->attributes |= DNS_VIEWATTR_ADBSHUTDOWN; 557 view->attributes |= DNS_VIEWATTR_REQSHUTDOWN; 601 view->attributes &= ~DNS_VIEWATTR_RESSHUTDOWN; 618 view->attributes &= ~DNS_VIEWATTR_ADBSHUTDOWN; 633 view->attributes [all...] |
H A D | masterdump.c | 193 #define NXDOMAIN(x) (((x)->attributes & DNS_RDATASETATTR_NXDOMAIN) != 0) 415 rdataset->attributes |= DNS_RDATASETATTR_LOADORDER; 492 if ((rdataset->attributes & DNS_RDATASETATTR_NEGATIVE) != 0) { 500 if ((rdataset->attributes & DNS_RDATASETATTR_NEGATIVE) != 0) 511 if ((rdataset->attributes & DNS_RDATASETATTR_NEGATIVE) != 0) { 872 if (((rds->attributes & DNS_RDATASETATTR_NEGATIVE) != 0) && 885 rds->attributes & DNS_RDATASETATTR_RESIGN) { 927 rdataset->attributes |= DNS_RDATASETATTR_LOADORDER; 1038 if (((rdataset.attributes & DNS_RDATASETATTR_NEGATIVE) != 0) &&
|
/bind-9.6-ESV-R11/bin/named/include/named/ |
H A D | query.h | 43 unsigned int attributes; member in struct:ns_query
|
H A D | client.h | 107 unsigned int attributes; member in struct:ns_client
|
/bind-9.6-ESV-R11/bin/named/ |
H A D | query.c | 67 #define PARTIALANSWER(c) (((c)->query.attributes & \ 70 #define USECACHE(c) (((c)->query.attributes & \ 73 #define RECURSIONOK(c) (((c)->query.attributes & \ 76 #define RECURSING(c) (((c)->query.attributes & \ 79 #define CACHEGLUEOK(c) (((c)->query.attributes & \ 82 #define WANTRECURSION(c) (((c)->query.attributes & \ 85 #define WANTDNSSEC(c) (((c)->attributes & \ 88 #define WANTAD(c) (((c)->attributes & \ 92 #define NOAUTHORITY(c) (((c)->query.attributes & \ 95 #define NOADDITIONAL(c) (((c)->query.attributes [all...] |
H A D | client.c | 91 #define TCP_CLIENT(c) (((c)->attributes & NS_CLIENTATTR_TCP) != 0) 449 client->attributes = 0; 646 * Clear all client attributes that are specific to 649 client->attributes &= NS_CLIENTATTR_TCP; 843 if ((client->attributes & NS_CLIENTATTR_PKTINFO) != 0 && 844 (client->attributes & NS_CLIENTATTR_MULTICAST) == 0) 930 if ((client->attributes & NS_CLIENTATTR_RA) != 0) 933 if ((client->attributes & NS_CLIENTATTR_WANTDNSSEC) != 0) 1195 if ((client->attributes & NS_CLIENTATTR_WANTNSID) != 0 && 1350 client->attributes | [all...] |
H A D | xfrout.c | 215 it->rdataset.attributes |= DNS_RDATASETATTR_LOADORDER; 265 it->rdataset.attributes |= DNS_RDATASETATTR_LOADORDER; 1118 (client->attributes & NS_CLIENTATTR_TCP) == 0) 1176 (client->attributes & NS_CLIENTATTR_TCP) == 0) 1452 if ((xfr->client->attributes & NS_CLIENTATTR_TCP) == 0) { 1475 if ((xfr->client->attributes & NS_CLIENTATTR_RA) != 0) 1645 if ((xfr->client->attributes & NS_CLIENTATTR_TCP) != 0) {
|
/bind-9.6-ESV-R11/lib/isc/include/isc/ |
H A D | socket.h | 171 isc_uint32_t attributes; /*%< see below */ member in struct:isc_socketevent
|
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/wsock/config/ |
H A D | idnconf.tcl | 338 if {[catch {file attributes $file -longname} lfile]} { 342 if {[catch {file attributes $dir -longname} ldir]} { 361 if {[catch {file attributes $file -longname} lfile]} { 365 if {[catch {file attributes $dir -longname} ldir]} {
|