Truxton message set route id

From truxwiki.com
Jump to navigation Jump to search

Tells sets the route this media is taking through the exploitation process. This corresponds to the ID column of the LoadConfiguration table.

Syntax

void truxton_message_set_route_id( uint64_t message_handle, uint32_t route_id );

Parameters

message_handle

The handle to a message created by the truxton_message_create call.

route_id

The identifier of the route to take. This should correspond to the ID column of the LoadConfiguration table.

Sample

void set_route( uint64_t message )
{
   truxton_message_set_route_id( message, 1 );
}