DSENetAddress
Contains a network address associated with a DSEvent.
typedef struct
{
uint32 type ;
uint32 length ;
uint8 data [1];
} DSENetAddress;
type can have the following values:
The address is stored as a binary string. This string is the literal value of the address. To display it as a hexadecimal value, you must convert each 4-bit nibble to the correct character (0,1,2,3,...F).
For two net addresses to match, the type, length, and value of the addresses must match.