2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-06 09:35:32 +00:00
Files
bind/lib/isc/bufferlist.c

56 lines
1.2 KiB
C
Raw Normal View History

1999-09-06 04:41:38 +00:00
/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
1999-09-06 04:41:38 +00:00
*/
/*! \file */
2000-06-22 22:00:42 +00:00
#include <stddef.h>
1999-09-06 04:41:38 +00:00
#include <isc/buffer.h>
#include <isc/bufferlist.h>
2000-04-28 01:12:23 +00:00
#include <isc/util.h>
1999-09-06 04:41:38 +00:00
unsigned int
isc_bufferlist_usedcount(isc_bufferlist_t *bl) {
1999-09-06 04:41:38 +00:00
isc_buffer_t *buffer;
unsigned int length;
REQUIRE(bl != NULL);
length = 0;
buffer = ISC_LIST_HEAD(*bl);
while (buffer != NULL) {
REQUIRE(ISC_BUFFER_VALID(buffer));
length += isc_buffer_usedlength(buffer);
1999-09-06 04:41:38 +00:00
buffer = ISC_LIST_NEXT(buffer, link);
}
return (length);
}
unsigned int
isc_bufferlist_availablecount(isc_bufferlist_t *bl) {
1999-09-06 04:41:38 +00:00
isc_buffer_t *buffer;
unsigned int length;
REQUIRE(bl != NULL);
length = 0;
buffer = ISC_LIST_HEAD(*bl);
while (buffer != NULL) {
REQUIRE(ISC_BUFFER_VALID(buffer));
length += isc_buffer_availablelength(buffer);
1999-09-06 04:41:38 +00:00
buffer = ISC_LIST_NEXT(buffer, link);
}
return (length);
}