Important: The information in this document is obsolete and should not be used for new development.
Endpoint Flags
Open Transport uses theflagsfield of theTEndpointInfostructure to specify additional information about the endpoint. The constant names that Open Transport can return for this field are given by the endpoint flags enumeration:
enum { T_SENDZERO = 0x001, T_XPG4_1 = 0x002, T_CAN_SUPPORT_MDATA = 0x10000000, T_CAN_RESOLVE_ADDR = 0x40000000, T_CAN_SUPPLY_MIB = 0x20000000 };Constant descriptions
T_SENDZERO- This endpoint lets you send and receive zero-length TSDUs.
T_XPG4_1- This endpoint supports the
OTGetProtAddressfunction ( conforms to XTI in XPG4).T_CAN_SUPPORT_MDATA- This endpoint supports
M_DATA, that is, it permits receiving and returning raw packets. For additional information, see "Advanced Topics".T_CAN_RESOLVE_ADDR- This endpoint supports the
OTResolveAddressfunction.T_CAN_SUPPLY_MIB- This endpoint can supply the Management Information Base (MIB) data used by the Simple Network Management Protocol (SNMP)
.At this time you cannot access this data.