07-Jul-2022 03:13 - edited 07-Jul-2022 03:14
Hello,
I have a CLOSED_CONNECTION irule at the end of the VS to unset all variables:
Solved! Go to Solution.
07-Jul-2022 16:29
Variables are scoped to the connection. After its closed they no longer exist. The only time this is not the case when you create global variables via rule_init. So there is no need to delete these.
07-Jul-2022 16:29
Variables are scoped to the connection. After its closed they no longer exist. The only time this is not the case when you create global variables via rule_init. So there is no need to delete these.
10-Jul-2022 19:41
Hello Kevin,
Thanks for the answer. Just want to confirm , what you said also apply to " TCP::close " , right?
11-Jul-2022 00:51
TCP::close is triggered at the close of the connection. Right after the processing of any iRule events related to that connection, the variables should no longer exist. A connection is a TCP session defined by quatuple of source-ip:source-port and destination-ip:destination-port.