Extensible Connection-oriented Messaging (XCM)
Loading...
Searching...
No Matches
Enumerations
xcm_attr_types.h File Reference

XCM attribute value type definitions. More...

Go to the source code of this file.

Enumerations

enum  xcm_attr_type {
  xcm_attr_type_bool = 1 , xcm_attr_type_int64 = 2 , xcm_attr_type_str = 3 , xcm_attr_type_bin = 4 ,
  xcm_attr_type_double = 5
}
 

Detailed Description

XCM attribute value type definitions.

Enumeration Type Documentation

◆ xcm_attr_type

Enumeration representing the different attribute value types.

Enumerator
xcm_attr_type_bool 

Boolean type (from stdbool.h). Length is sizeof(bool).

xcm_attr_type_int64 

64-bit signed integer type in host byte order. Length is 8 octets.

xcm_attr_type_str 

A variable-length NUL-terminated string. Length is the actual string length (including NUL).

xcm_attr_type_bin 

Variable-length binary data.

xcm_attr_type_double 

Double precision floating point value.