]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
deprecated drill changelog and folded it into the ldns changelog
authorMiek Gieben <miekg@NLnetLabs.nl>
Tue, 22 Nov 2005 10:12:17 +0000 (10:12 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Tue, 22 Nov 2005 10:12:17 +0000 (10:12 +0000)
Changelog
drill/ChangeLog.22-nov-2005 [moved from drill/ChangeLog with 100% similarity]
ldns/dnssec.h
ldns/packet.h

index 8e4e26f604b18621f7fc2703460cb3d37067a297..a374b625bf058fad4625dbd67067214a3ddd320b 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,7 +1,11 @@
-           : 1.0.1: ldns-tam
+           : 1.0.1: ldns-team
        * added include/ and lib/ dirs so that you can compile against ldns
          without installing ldns on your system
 
+       Drill:
+       * -r was killed in favor of -o <header bit mnemonic> which 
+         allows for a header bits setting (and maybe more in the
+         future)
 
 18 Oct 2005: 1.0.0: ldns-team
        * Commited a patch from HÃ¥kan Olsson
similarity index 100%
rename from drill/ChangeLog
rename to drill/ChangeLog.22-nov-2005
index a4c21434e55a952fa06f4a25c7b43b76a4bda0ae..b9fd4cceba468d89cd2f3fa4f43a9be75e389d6f 100644 (file)
 /* default time before sigs expire */
 #define LDNS_DEFAULT_EXP_TIME  1209600
 
-#if 0
-/**
- * algorigthms used in dns
- */
-enum ldns_enum_algorithm
-{
-       LDNS_RSAMD5             = 1,
-       LDNS_DH                 = 2,
-       LDNS_DSA                = 3,
-       LDNS_ECC                = 4,
-       LDNS_RSASHA1            = 5,
-       LDNS_INDIRECT           = 252,
-       LDNS_PRIVATEDNS         = 253,
-       LDNS_PRIVATEOID         = 254
-};
-typedef enum ldns_enum_algorithm ldns_algorithm;
-#endif
-
 /** 
  * calculates a keytag of a key for use in DNSSEC.
  *
@@ -118,11 +100,6 @@ DSA *ldns_key_buf2dsa(ldns_buffer *key);
  */
 RSA *ldns_key_buf2rsa(ldns_buffer *key);
 
-/* TODO
- * Packet is still given (and used, but could be constructed from wire)
- * remove that?
- */
-
 /** 
  * returns a new DS rr that represents the given key rr.
  *
@@ -163,6 +140,11 @@ ldns_status ldns_pkt_verify(ldns_pkt *p, ldns_rr_type t, ldns_rdf *o, ldns_rr_li
  */
 ldns_zone *ldns_zone_sign(ldns_zone *zone, ldns_key_list *key_list);
  
+/**
+ * Initialize the random function. This calls OpenSSL
+ * \param[in] ????
+ * TODO
+ */
 ldns_status ldns_init_random(FILE *fd, uint16_t bytes);
 
 #endif /* _LDNS_DNSSEC_H_ */
index bde10ddc827cfd6596cc246aca341b03bb89f6c1..4c36c0e875cf607b7b92ec30de48abb3dfc5c539 100644 (file)
@@ -285,17 +285,15 @@ ldns_rr * ldns_pkt_get_rr(ldns_pkt *p, uint16_t n);
 ldns_rr * ldns_pkt_set_rr(ldns_pkt *p, ldns_rr *rr, uint16_t n);
 bool ldns_pkt_insert_rr(ldns_pkt *p, ldns_rr *rr, uint16_t n);
        
-
-
 #define LDNS_MAX_PACKETLEN         65535
 
 /* allow flags to be given to mk_query */
-#define LDNS_QR                1
-#define LDNS_AA                2
-#define LDNS_TC                4
-#define LDNS_RD                8
-#define LDNS_CD                16
-#define LDNS_RA                32
-#define LDNS_AD                64
+#define LDNS_QR                1       /* QueRy - query flag */
+#define LDNS_AA                2       /* Authoritative Answer - server flag */
+#define LDNS_TC                4       /* TrunCated - server flag */
+#define LDNS_RD                8       /* Recursion Desired - query flag */
+#define LDNS_CD                16      /* Checking Disabled - query flag */
+#define LDNS_RA                32      /* Recursion Available - server flag */
+#define LDNS_AD                64      /* Authenticated Data - server flag */
 
 #endif  /* !_LDNS_PACKET_H */