From: Matthijs Mekking Date: Wed, 20 Feb 2013 15:18:04 +0000 (+0000) Subject: small word changes in code documentation X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=924b1f6e8fc19e095f30bca42bab50e85496ca8c;p=thirdparty%2Funbound.git small word changes in code documentation git-svn-id: file:///svn/unbound/branches/edns-subnet@2849 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/edns-subnet/subnetmod.c b/edns-subnet/subnetmod.c index d2571eb12..d1101c173 100644 --- a/edns-subnet/subnetmod.c +++ b/edns-subnet/subnetmod.c @@ -101,7 +101,7 @@ enum module_ext_state eval_response(struct module_qstate* qstate) return module_finished; } - /** Being here means We asked for and got a subnet specific answer. + /** Being here means we have asked for and got a subnet specific answer. * Also the answer from the authority is not yet cached anywhere. */ /* can we accept response? */ @@ -155,7 +155,7 @@ void subnetmod_operate(struct module_qstate* qstate, enum module_ev event, if(!edns_from_client || !edns_from_client->subnet_validdata) { /* No clients are interested in result or we could not - * parse it, we don't do vandergaast */ + * parse it, we don't do client subnet */ qstate->edns_out.subnet_validdata = 0; verbose(VERB_ALGO, "subnet: pass to next module"); qstate->ext_state[id] = module_wait_module; diff --git a/services/outside_network.h b/services/outside_network.h index bbe6feff2..feeb803ab 100644 --- a/services/outside_network.h +++ b/services/outside_network.h @@ -357,7 +357,7 @@ struct serviced_query { /** the UDP or TCP query that is pending, see status which */ void* pending; #ifdef CLIENT_SUBNET - /** Contains vandergaast data */ + /** Contains client subnet data */ struct edns_data* edns; #endif }; @@ -484,7 +484,6 @@ void pending_delete(struct outside_network* outnet, struct pending* p); * @return 0 on error, or pointer to serviced query that is used to answer * this serviced query may be shared with other callbacks as well. */ - struct serviced_query* outnet_serviced_query(struct outside_network* outnet, uint8_t* qname, size_t qnamelen, uint16_t qtype, uint16_t qclass, uint16_t flags, int dnssec, int want_dnssec, int tcp_upstream,