danielc
Jul 07, 2022Cirrus
Immediate go to Client_CLOSED during the middle of irule
Hello,
I have multiple irule running in order within VS 1.irule ... 2.irule ... close_connection.irul
My problem is , if I want to , say, when in 2.irule or any irule....
If {some condition = true} {
....
TCP::CLOSE
}
And I have close_connection.irul at the end to unset variables
when CLIENT_CLOSED {
if { [info exists sni_n] } {
unset sni_n
}
......
}
Will this achieve what I want?
When I have TCP::CLOSE. will BIGIP still run/process
when CLIENT_CLOSED {
}
?
Thanks..