]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
small word changes in code documentation
authorMatthijs Mekking <matje@nlnetlabs.nl>
Wed, 20 Feb 2013 15:18:04 +0000 (15:18 +0000)
committerMatthijs Mekking <matje@nlnetlabs.nl>
Wed, 20 Feb 2013 15:18:04 +0000 (15:18 +0000)
git-svn-id: file:///svn/unbound/branches/edns-subnet@2849 be551aaa-1e26-0410-a405-d3ace91eadb9

edns-subnet/subnetmod.c
services/outside_network.h

index d2571eb1250ed114255fd985fae635f55a047104..d1101c173d909c6b08a7bb4f0491c54e6ad817ce 100644 (file)
@@ -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;
index bbe6feff2bf591b143b425c6875e57ec1629061b..feeb803abe3ab5d43cdecfe5e53480c80e903226 100644 (file)
@@ -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,