]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
nu is het echt stuk
authorMiek Gieben <miekg@NLnetLabs.nl>
Thu, 9 Dec 2004 13:38:51 +0000 (13:38 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Thu, 9 Dec 2004 13:38:51 +0000 (13:38 +0000)
rr.h

diff --git a/rr.h b/rr.h
index a78afa96071b8f874f228eb836124ac78260c3b2..6590b6bea8a4500499e38ecf3cb66f0960b9fdaf 100644 (file)
--- a/rr.h
+++ b/rr.h
 struct type_struct_rr
 {
        /** \brief Owner name, uncompressed */
-       uint8_t         *owner; 
+       uint8_t         *_owner;        
        /** \brief Time to live  */
-       uint32_t        ttl;    
+       uint32_t        _ttl;   
        /** \brief Number of data fields */
-       uint16_t        rd_count;
+       uint16_t        _rd_count;
        /** \brief the type of the RR. A, MX etc. */
-       uint16_t        type;   
+       uint16_t        _type;  
        /** \brief Class of the resource record.
         *
         * name chosen to avoid clash with class keyword
         */
-       t_class         klass;  
+       t_class         _klass; 
        /* everything in the rdata is in network order */
-       /** \brief The list of data's */
+       /** \brief The list of rdata's */
        t_rdata_field   *rdata_fields;
 };
 typedef struct type_struct_rr t_rr;