Is there a way I can kill a TCP connection without sending a response within a policy?
The scenario is I want to do some request filtering (along the lines of IP filtering) and instead of sending a 4xx response, I'd like to just end the TCP connection. Ideally it would be done at a firewall, but that's not possible in our particular scenario.
Psuedo code for what I'm looking for:
At Least One
All Assertions
- Filtering Criteria
All
- Kill TCP Connection
- End Processing of Service Call
-------------------------------------------