MR::store

Description

The MR::store command stores a tcl variable with the mr_message object. This variable will be delivered with the message to the egress connflow. Adding variables does not effect the content of the message

Syntax

MR::store <name> [<name>] ...

Note: More than one variable can be stored

Examples

when MR_INGRESS {
  set client_addr “[IP::addr]:[IP::port]"
  MR::store client_addr
}
when MR_EGRESS {
  MR::restore client_addr
}