buffer.c revision 22f735acbce7ffe95af20bb58bb8929b6f1d674f
/*
* Copyright (C) 1998, 1999 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
*/
#include <config.h>
#include <string.h>
#include <isc/assertions.h>
#define VALID_BUFFER(b) ((b) != NULL && \
(b)->magic == BUFFER_MAGIC)
void
unsigned int type) {
/*
* Make 'b' refer to the 'length'-byte region starting at base.
*/
b->magic = BUFFER_MAGIC;
b->used = 0;
b->current = 0;
b->active = 0;
}
void
/*
* Make 'b' an invalid buffer.
*/
REQUIRE(VALID_BUFFER(b));
b->magic = 0;
b->type = 0;
b->length = 0;
b->used = 0;
b->current = 0;
b->active = 0;
}
unsigned int
isc_buffer_type(isc_buffer_t *b) {
/*
* The type of 'b'.
*/
REQUIRE(VALID_BUFFER(b));
return (b->type);
}
void
/*
* Make 'r' refer to the region of 'b'.
*/
REQUIRE(VALID_BUFFER(b));
}
void
/*
* Make 'r' refer to the used region of 'b'.
*/
REQUIRE(VALID_BUFFER(b));
}
void
/*
* Make 'r' refer to the available region of 'b'.
*/
REQUIRE(VALID_BUFFER(b));
}
void
isc_buffer_add(isc_buffer_t *b, unsigned int n) {
/*
* Increase the 'used' region of 'b' by 'n' bytes.
*/
REQUIRE(VALID_BUFFER(b));
b->used += n;
}
void
isc_buffer_subtract(isc_buffer_t *b, unsigned int n) {
/*
* Decrease the 'used' region of 'b' by 'n' bytes.
*/
REQUIRE(VALID_BUFFER(b));
b->used -= n;
}
void
isc_buffer_clear(isc_buffer_t *b) {
/*
* Make the used region empty.
*/
REQUIRE(VALID_BUFFER(b));
b->used = 0;
b->current = 0;
b->active = 0;
}
void
/*
* Make 'r' refer to the consumed region of 'b'.
*/
REQUIRE(VALID_BUFFER(b));
}
void
/*
* Make 'r' refer to the remaining region of 'b'.
*/
REQUIRE(VALID_BUFFER(b));
}
void
/*
* Make 'r' refer to the active region of 'b'.
*/
REQUIRE(VALID_BUFFER(b));
} else {
r->length = 0;
}
}
void
isc_buffer_setactive(isc_buffer_t *b, unsigned int n) {
unsigned int active;
/*
* Sets the end of the active region 'n' bytes after current.
*/
REQUIRE(VALID_BUFFER(b));
}
void
isc_buffer_first(isc_buffer_t *b) {
/*
* Make the consumed region empty.
*/
REQUIRE(VALID_BUFFER(b));
b->current = 0;
}
void
isc_buffer_forward(isc_buffer_t *b, unsigned int n) {
/*
* Increase the 'consumed' region of 'b' by 'n' bytes.
*/
REQUIRE(VALID_BUFFER(b));
b->current += n;
}
void
isc_buffer_back(isc_buffer_t *b, unsigned int n) {
/*
* Decrease the 'consumed' region of 'b' by 'n' bytes.
*/
REQUIRE(VALID_BUFFER(b));
b->current -= n;
}
void
unsigned int length;
void *src;
/*
* Compact the used region by moving the remaining region so it occurs
* at the start of the buffer. The used region is shrunk by the size
* of the consumed region, and the consumed region is then made empty.
*/
REQUIRE(VALID_BUFFER(b));
else
b->active = 0;
b->current = 0;
}
unsigned char *cp;
/*
* Read an unsigned 16-bit integer in network byte order from 'b',
* convert it to host byte order, and return it.
*/
REQUIRE(VALID_BUFFER(b));
b->current += 2;
return (result);
}
void
{
unsigned char *cp;
REQUIRE(VALID_BUFFER(b));
b->used += 2;
}
unsigned char *cp;
/*
* Read an unsigned 32-bit integer in network byte order from 'b',
* convert it to host byte order, and return it.
*/
REQUIRE(VALID_BUFFER(b));
b->current += 4;
return (result);
}
void
{
unsigned char *cp;
REQUIRE(VALID_BUFFER(b));
b->used += 4;
}