berval 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.
berval is defined as follows:
struct berval {unsigned long bv_len;
char *bv_val;
};The fields in this structure are described below:
bv_len | |
bv_val |
berval structure when working with attributes that contain binary data (such as a JPEG or audio file).
Last Updated: 10/01/98 17:05:28