on key 's'
{
dword messageId = 0x12340004; // service ID = 0x1234, method ID = 0x0004
dword requestId = 0; // client ID = 0, session ID = 0
dword protocolVersion = 1;
dword interfaceVersion = 1;
dword messageType = 0x2; // notification message
dword returnCode = 0; // not available
dword aep; // application endpoint handle
dword messageHandle = 0; // handle of the created SOME/IP message
BYTE payload[5]; // the message payload
dword count; // a simple counter
BYTE buffer[21]; // serialization buffer
// initialize the payload
count = 0;
payload[count++] = 0x11;
payload[count++] = 0x22;
payload[count++] = 0x33;
payload[count++] = 0x44;
payload[count++] = 0x55;
// open application endpoint
aep = AREthOpenLocalApplicationEndpoint(17, 50002);
// create the SOME/IP message itself
messageHandle = AREthCreateMessage(messageId, requestId, protocolVersion, interfaceVersion, messageType, returnCode);
// set message payload
AREthSetData(messageHandle, elcount(payload), payload);
// serialize message to data buffer
AREthSerializeMessage(messageHandle, elcount(buffer), buffer);
// The serialized message can now be added to a pure Ethernet packet using the function "EthSetTokenData".
}