Share via


AsnOctetString

The AsnOctetString contains octet quantities, usually bytes. This structure is used by multiple SNMP function. This structure is not used by the WinSNMP API functions.

typedef struct {
BYTE * stream ;
UINT length ; 
BOOL dynamic ; 
} AsnOctetString;

Members

  • stream
    Pointer to the octet stream.
  • length
    The number of octets in the data stream.
  • dynamic
    Flag that specifies whether the data has been dynamically allocated with SnmpUtilMemAlloc function.

Remarks

Use the AsnOctetString structure to transfer string values. For example, use it to transfer the string that represents a computer name as a MIB object value.

You must check the flag specified in the dynamic member before you release the data stream of an octet string. Call the SnmpUtilMemFree function only if the dynamic member is set to TRUE.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 3.0 and later Snmp.h    

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

SnmpUtilMemAlloc, SnmpUtilMemFree

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.