COMPRESS::disable

Description

Disables compression for the current HTTP response. Note that when using this command, you must set the HTTP profile setting Compression to Selective.

Syntax

COMPRESS::disable

COMPRESS::disable

  • Disables compression for the current HTTP response. Note that when using this command, you must set the HTTP profile setting Compression to Selective.

Examples

when HTTP_REQUEST {
  if { [TCP::mss] >= 1280 } {
    COMPRESS::disable
  }
}