]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
removed ldns_resolver_bgsend
authorMiek Gieben <miekg@NLnetLabs.nl>
Mon, 23 Jan 2006 10:54:45 +0000 (10:54 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Mon, 23 Jan 2006 10:54:45 +0000 (10:54 +0000)
Changelog
ldns/resolver.h
resolver.c

index 9c205cfbdb9e30fc6942f20d4286abe7cd63e6e2..00d11c8e08a3a1e9f1806423d4007127e37335bf 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -43,6 +43,8 @@
        New:
        * ldns_zone_sort: Sort a zone
        * ldns_bgsend(): background send, returns a socket.
+       Removed:
+       * ldns_resolver_bgsend(): was not used in 1.0.0.
 
 
 18 Oct 2005: 1.0.0: ldns-team
index fd0f61787d43344adb83dc9cc892671739939fb0..96ba15ed062ecc70c63aa347a6f3c01a0277b4bf 100644 (file)
@@ -494,19 +494,6 @@ ldns_status ldns_resolver_push_nameserver_rr(ldns_resolver *r, ldns_rr *rr);
  */
 ldns_status ldns_resolver_push_nameserver_rr_list(ldns_resolver *r, ldns_rr_list *rrlist);
 
-/*
- * Send the query for name as-is but use bg_send and don't wait for 
- * a respons
- * \param[out] **answer a pointer to a ldns_pkt pointer (initialized by this function)
- * \param[in] *r operate using this resolver
- * \param[in] *name query for this name
- * \param[in] t query for this type (may be 0, defaults to A)
- * \param[in] c query for this class (may be 0, default to IN)
- * \param[in] flags the query flags
- * \return ldns_pkt* a packet with the reply from the nameserver
- */
-int ldns_resolver_bgsend();
-
 /**
  * Send the query for using the resolver and take the search list into account
  * \param[in] *r operate using this resolver
index 2a0320914f59e0d522413c1dc249f751a3adb0fe..08285b0127a9c4d76876cf757e7b0d43e3617970 100644 (file)
@@ -890,15 +890,6 @@ ldns_resolver_send(ldns_pkt **answer, ldns_resolver *r, ldns_rdf *name,
        return status;
 }
 
-int
-ldns_resolver_bgsend()
-{
-
-
-
-       return 0;
-}
 ldns_rr *
 ldns_axfr_next(ldns_resolver *resolver)
 {