Initial Release 6

Data Type : Basic Encoding Rules; LDAP

Berval - Structure for returning a sequence of octet strings + length
----------------------------------------------------------------------------------------------------------

#include <lber.h>

Definition :

typedef struct berval {
ber_len_t bv_len;
char *bv_val;
Description :

A Berval structure represents binary data that is encoded using simplified Basic Encoding Rules (BER). The data and size of the data are included in a Berval structure as it contains a sequence of bytes and an indication of its length. Applications may allocate their own Berval structures.
The Berval structure should be disposed of using ber_bvfree().

See Also :

ber_bvfree
----------------------------------------------------------------------------------------------------------