Skip to content

Commit

Permalink
CDI-890: add WAAP option
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-lukyanchyk committed Oct 29, 2024
1 parent d428b35 commit 78fbe1f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gcore/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ type Options struct {
UseDefaultLEChain *UseDefaultLEChain `json:"use_default_le_chain"`
UserAgentACL *UserAgentACL `json:"user_agent_acl"`
UseRSALECert *UseRSALECert `json:"use_rsa_le_cert"`
WAAP *WAAP `json:"waap"`
WAF *WAF `json:"waf"`
WebSockets *WebSockets `json:"websockets"`
}
Expand Down Expand Up @@ -315,6 +316,11 @@ type UseRSALECert struct {
Value bool `json:"value"`
}

type WAAP struct {
Enabled bool `json:"enabled"`
Value bool `json:"value"`
}

type WAF struct {
Enabled bool `json:"enabled"`
Value bool `json:"value"`
Expand Down

0 comments on commit 78fbe1f

Please sign in to comment.