MR::restore

Description

The MR::restore command returns the stored variables to the current context tcl variable store. If no name is provided, it will add all stored variables.

Syntax

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

Examples

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