@@ -94,7 +94,7 @@ typedef enum {
9494 ARES_OPCODE_IQUERY = 1 , /*!< Inverse query. Obsolete. */
9595 ARES_OPCODE_STATUS = 2 , /*!< Name server status query */
9696 ARES_OPCODE_NOTIFY = 4 , /*!< Zone change notification (RFC 1996) */
97- ARES_OPCODE_UPDATE = 5 , /*!< Zone update message (RFC2136) */
97+ ARES_OPCODE_UPDATE = 5 /*!< Zone update message (RFC2136) */
9898} ares_dns_opcode_t ;
9999
100100/*! DNS Header flags */
@@ -108,7 +108,7 @@ typedef enum {
108108 ARES_FLAG_AD = 1 << 5 , /*!< RFC 2065. Authentic Data bit indicates in a
109109 * response that the data included has been verified by
110110 * the server providing it */
111- ARES_FLAG_CD = 1 << 6 , /*!< RFC 2065. Checking Disabled bit indicates in a
111+ ARES_FLAG_CD = 1 << 6 /*!< RFC 2065. Checking Disabled bit indicates in a
112112 * query that non-verified data is acceptable to the
113113 * resolver sending the query. */
114114} ares_dns_flags_t ;
@@ -152,7 +152,7 @@ typedef enum {
152152 ARES_RCODE_BADNAME = 20 , /*!< RFC 2930. Duplicate Key Name */
153153 ARES_RCODE_BADALG = 21 , /*!< RFC 2930. Algorithm not supported */
154154 ARES_RCODE_BADTRUNC = 22 , /*!< RFC 8945. Bad Truncation */
155- ARES_RCODE_BADCOOKIE = 23 , /*!< RVC 7973. Bad/missing Server Cookie */
155+ ARES_RCODE_BADCOOKIE = 23 /*!< RVC 7973. Bad/missing Server Cookie */
156156} ares_dns_rcode_t ;
157157
158158/*! Data types used */
@@ -169,7 +169,7 @@ typedef enum {
169169 * printable. Guaranteed to have a NULL
170170 * terminator for convenience (not included in
171171 * length) */
172- ARES_DATATYPE_OPT = 10 , /*!< Array of options. 16bit identifier, BIN
172+ ARES_DATATYPE_OPT = 10 /*!< Array of options. 16bit identifier, BIN
173173 * data. */
174174} ares_dns_datatype_t ;
175175
@@ -292,7 +292,7 @@ typedef enum {
292292 /*! RAW Record. RR Type. Datatype: U16 */
293293 ARES_RR_RAW_RR_TYPE = (ARES_REC_TYPE_RAW_RR * 100 ) + 1 ,
294294 /*! RAW Record. RR Data. Datatype: BIN */
295- ARES_RR_RAW_RR_DATA = (ARES_REC_TYPE_RAW_RR * 100 ) + 2 ,
295+ ARES_RR_RAW_RR_DATA = (ARES_REC_TYPE_RAW_RR * 100 ) + 2
296296} ares_dns_rr_key_t ;
297297
298298/*! TLSA Record ARES_RR_TLSA_CERT_USAGE known values */
@@ -372,7 +372,7 @@ typedef enum {
372372 /*! RFC 8145. Signaling Trust Anchor Knowledge in DNSSEC */
373373 ARES_OPT_PARAM_EDNS_KEY_TAG = 14 ,
374374 /*! RFC 8914. Extended ERROR code and message */
375- ARES_OPT_PARAM_EXTENDED_DNS_ERROR = 15 ,
375+ ARES_OPT_PARAM_EXTENDED_DNS_ERROR = 15
376376} ares_opt_param_t ;
377377
378378/*! Data type for option records for keys like ARES_RR_OPT_OPTIONS and
0 commit comments