Difference between revisions of "Truxton message get dont route"
Jump to navigation
Jump to search
(Created page with "Tells you if your message should be forwarded to any other exploitation processes in the ETL layer. =Syntax= <syntaxhighlight lang="C"> uint32_t truxton_message_get_queue_get...") |
(→Syntax) |
||
| Line 3: | Line 3: | ||
=Syntax= | =Syntax= | ||
<syntaxhighlight lang="C"> | <syntaxhighlight lang="C"> | ||
| − | uint32_t | + | uint32_t truxton_message_get_dont_route( uint64_t message_handle ); |
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 07:35, 13 June 2020
Tells you if your message should be forwarded to any other exploitation processes in the ETL layer.
Syntax
uint32_t truxton_message_get_dont_route( uint64_t message_handle );
Parameters
message_handle
The handle to a message created by the truxton_message_create call.
Return value
If the message should be allowed to flow to other exploitation processes, this value will be zero. If the value is non-zero, the message will not be forward to any process down the line.
Sample
void check_message(uint64_t message)
{
if ( truxton_message_get_dont_route( message ) == 0 )
{
printf( "Message can be forwarded.\n" );
}
else
{
printf( "Message will not be routed\n" );
}
}