2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

added isc_buffer_putmem()

This commit is contained in:
Andreas Gustafsson
1999-10-29 23:50:55 +00:00
parent 4ed0c326e6
commit e5b0c46fbb
2 changed files with 31 additions and 0 deletions

View File

@@ -384,6 +384,19 @@ isc_buffer_putuint32(isc_buffer_t *b, isc_uint32_t val)
cp[3] = (unsigned char)(val & 0x000000ff);
}
void
isc_buffer_putmem(isc_buffer_t *b, unsigned char *base, unsigned int length)
{
unsigned char *cp;
REQUIRE(ISC_BUFFER_VALID(b));
REQUIRE(b->used + length <= b->length);
cp = b->base + b->used;
memcpy(cp, base, length);
b->used += length;
}
isc_result_t
isc_buffer_copyregion(isc_buffer_t *b, isc_region_t *r) {
unsigned char *base;