Forum Discussion

NathanM_65949's avatar
NathanM_65949
Icon for Nimbostratus rankNimbostratus
Apr 27, 2008

"Return" versus "Event Disable"

Simple question... is this:

when HTTP_RESPONSE { 
  ...do stuff... 
  event disable
  ...do other stuff...
}

The same as this:

when HTTP_RESPONSE { 
  ...do stuff... 
  return
  ...do other stuff...
}