What is Peach
Installing
Tutorials
Methodology
Introduction
Training
Enterprise
FAQ
Support Forums
Peach 3
Peach Pits
 General Conf
 Data Modeling
 State Modeling
 Agents
  Monitors
 Test
  Publishers
  Loggers
Running
Minset
Peach 2.3

License

Endian Attribute

Specify the byte order of a field.

For more information about endianness see this Wikipedia article.

Valid Values:

  • big or network — Most significant byte first

  • little — Least significant byte first

Examples:

<DataModel name="NumberExample6">
 <Number name="Hi5" value="AB CD" valueType="hex" size="16" signed="false" endian="big" />
</DataModel>

Will produce the bytes in the following order.

 AB CD
<DataModel name="NumberExample7">
 <Number name="Hi5" value="AB CD" valueType="hex" size="16" signed="false" endian="little" />
</DataModel>

Will produce the bytes in the following order.

 CD AB