2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

code review

This commit is contained in:
Brian Wellington
2000-03-16 01:26:49 +00:00
parent ec04f989ea
commit d5c518af63

View File

@@ -15,7 +15,9 @@
* SOFTWARE.
*/
/* $Id: mb_7.c,v 1.20 2000/02/03 23:43:01 halley Exp $ */
/* $Id: mb_7.c,v 1.21 2000/03/16 01:26:49 bwelling Exp $ */
/* Reviewed: Wed Mar 15 17:31:26 PST 2000 by bwelling */
#ifndef RDATA_GENERIC_MB_7_C
#define RDATA_GENERIC_MB_7_C
@@ -29,10 +31,10 @@ fromtext_mb(dns_rdataclass_t rdclass, dns_rdatatype_t type,
dns_name_t name;
isc_buffer_t buffer;
REQUIRE(type == 7);
rdclass = rdclass; /*unused*/
REQUIRE(type == 7);
RETERR(gettoken(lexer, &token, isc_tokentype_string, ISC_FALSE));
dns_name_init(&name, NULL);
@@ -71,10 +73,10 @@ fromwire_mb(dns_rdataclass_t rdclass, dns_rdatatype_t type,
{
dns_name_t name;
REQUIRE(type == 7);
rdclass = rdclass; /*unused*/
REQUIRE(type == 7);
if (dns_decompress_edns(dctx) >= 1 || !dns_decompress_strict(dctx))
dns_decompress_setmethods(dctx, DNS_COMPRESS_ALL);
else
@@ -130,25 +132,22 @@ static inline isc_result_t
fromstruct_mb(dns_rdataclass_t rdclass, dns_rdatatype_t type, void *source,
isc_buffer_t *target)
{
rdclass = rdclass; /*unused*/
source = source; /*unused*/
target = target; /*unused*/
REQUIRE(type == 7);
rdclass = rdclass; /*unused*/
source = source;
target = target;
return (DNS_R_NOTIMPLEMENTED);
}
static inline isc_result_t
tostruct_mb(dns_rdata_t *rdata, void *target, isc_mem_t *mctx) {
target = target; /*unused*/
mctx = mctx; /*unused*/
REQUIRE(rdata->type == 7);
target = target;
mctx = mctx;
return (DNS_R_NOTIMPLEMENTED);
}