bind query.c

来源:互联网 发布:网络用语棒子什么意思 编辑:程序博客网 时间:2024/06/14 06:20

整体结构分析

主要包含处理各种类型和情况的查询函数,多数函数仅仅为该文件内的其它调用,以便方便的完成查询。ns_query_start()函数向外提供完整的查询服务。

数据结构

/*% nameserver query structure */struct ns_query {    unsigned int            attributes;    unsigned int            restarts;    isc_boolean_t           timerset;    dns_name_t *            qname;    dns_name_t *            origqname;    unsigned int            dboptions;    unsigned int            fetchoptions;    dns_db_t *          gluedb;    dns_db_t *          authdb;    dns_zone_t *            authzone;    isc_boolean_t           authdbset;    isc_boolean_t           isreferral;    isc_mutex_t         fetchlock;    dns_fetch_t *           fetch;    isc_bufferlist_t        namebufs;    ISC_LIST(ns_dbversion_t)    activeversions;    ISC_LIST(ns_dbversion_t)    freeversions;};

函数调用关系

这里写图片描述
这里写图片描述

这里写图片描述
这里写图片描述

0 0
原创粉丝点击