Advertisement
Guest User

Untitled

a guest
Dec 18th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.19 KB | None | 0 0
  1. when HTTP_REQUEST {
  2.   set disableStream 0
  3.   if {[HTTP::uri] == "/soapy-stuff"} {
  4.     set disableStream 1
  5.   }
  6.  
  7. }
  8.  
  9. when HTTP_RESPONSE {
  10.   if {$disableStream} {
  11.      STREAM::disable
  12.   }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement