diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..ba900a67 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this files except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/common/common.go b/common/common.go index d37b67ca..529b9dc0 100644 --- a/common/common.go +++ b/common/common.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package common import "strings" diff --git a/common/expression.go b/common/expression.go index 9a938fcb..05ee51cd 100644 --- a/common/expression.go +++ b/common/expression.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package common import "strings" diff --git a/common/parser-data.go b/common/parser-data.go index fca08c3e..98cd797b 100644 --- a/common/parser-data.go +++ b/common/parser-data.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package common type ParserData interface{} diff --git a/common/return-result-line.go b/common/return-result-line.go index 93029ca4..5e450319 100644 --- a/common/return-result-line.go +++ b/common/return-result-line.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package common type ReturnResultLine struct { diff --git a/errors/parse.go b/errors/parse.go index 3bb8d5f1..a6147e7d 100644 --- a/errors/parse.go +++ b/errors/parse.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package errors import ( diff --git a/go-generate.go b/go-generate.go index 8620e3fb..c24317fb 100644 --- a/go-generate.go +++ b/go-generate.go @@ -1,5 +1,21 @@ // +build ignore +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package main //run this as go run go-generate.go $(pwd) @@ -133,20 +149,6 @@ func generateTypesOther(dir string) { parserData.ModeOther = true err = typeTemplate.Execute(f, parserData) CheckErr(err) - /* - //parserData.TestFail = append(parserData.TestFail, "") parsers should not get empty line! - parserData.TestFail = append(parserData.TestFail, "---") - parserData.TestFail = append(parserData.TestFail, "--- ---") - - filePath = path.Join(dir, "tests", cleanFileName(filename)+"_generated_test.go") - log.Println(filePath) - f, err = os.Create(filePath) - CheckErr(err) - defer f.Close() - - err = testTemplate.Execute(f, parserData) - CheckErr(err) - */ parserData = Data{} } @@ -158,13 +160,10 @@ func generateTypesGeneric(dir string) { log.Println(err) } lines := common.StringSplitIgnoreEmpty(string(dat), '\n') - //fmt.Print(lines) parsers := map[string]*Data{} parserData := &Data{} for _, line := range lines { - //log.Println(parserData) - //log.Println(line) if strings.HasPrefix(line, "//sections:") { //log.Println(line) } @@ -340,6 +339,22 @@ func CheckErr(err error) { } var typeTemplate = template.Must(template.New("").Parse(`// Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + {{- if .ModeOther}} package {{ .Dir }} {{- else }} @@ -540,6 +555,22 @@ func (p *{{ .StructName }}) Parse(line string, parts, previousParts []string, co `)) var testTemplate = template.Must(template.New("").Parse(`// Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/params/bind-errors.go b/params/bind-errors.go index 9421aca8..56dfa9be 100644 --- a/params/bind-errors.go +++ b/params/bind-errors.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package params import "fmt" diff --git a/params/bind-options.go b/params/bind-options.go index dc7992a1..1089e4f3 100644 --- a/params/bind-options.go +++ b/params/bind-options.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package params import ( diff --git a/params/server-options.go b/params/server-options.go index d0a896ce..dd957075 100644 --- a/params/server-options.go +++ b/params/server-options.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package params import ( diff --git a/parser-config.go b/parser-config.go index dfd974d9..de63ba60 100644 --- a/parser-config.go +++ b/parser-config.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parser type ConfiguredParsers struct { diff --git a/parser-type.go b/parser-type.go index 907a593c..0430d680 100644 --- a/parser-type.go +++ b/parser-type.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parser import ( diff --git a/parser.go b/parser.go index 6b4c0f01..c457124f 100644 --- a/parser.go +++ b/parser.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parser import ( diff --git a/parsers/acl.go b/parsers/acl.go index 953548ee..3bab377d 100644 --- a/parsers/acl.go +++ b/parsers/acl.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/acl_generated.go b/parsers/acl_generated.go index ee0b0cd1..46a29f9c 100644 --- a/parsers/acl_generated.go +++ b/parsers/acl_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/balance.go b/parsers/balance.go index 6763a007..203af78f 100644 --- a/parsers/balance.go +++ b/parsers/balance.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/balance_generated.go b/parsers/balance_generated.go index 379acd9e..3584aae9 100644 --- a/parsers/balance_generated.go +++ b/parsers/balance_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/bind.go b/parsers/bind.go index af728ce4..72338895 100644 --- a/parsers/bind.go +++ b/parsers/bind.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/bind_generated.go b/parsers/bind_generated.go index da1c9c2e..592e2ce2 100644 --- a/parsers/bind_generated.go +++ b/parsers/bind_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/cpu-map.go b/parsers/cpu-map.go index 914f8edc..3961afc6 100644 --- a/parsers/cpu-map.go +++ b/parsers/cpu-map.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/cpu-map_generated.go b/parsers/cpu-map_generated.go index 6dd540d4..b380d001 100644 --- a/parsers/cpu-map_generated.go +++ b/parsers/cpu-map_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/daemon.go b/parsers/daemon.go index eaeef153..68d5f7a3 100644 --- a/parsers/daemon.go +++ b/parsers/daemon.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/daemon_generated.go b/parsers/daemon_generated.go index d8bbb78b..4e45ecc6 100644 --- a/parsers/daemon_generated.go +++ b/parsers/daemon_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/default-backend.go b/parsers/default-backend.go index 4f33b61c..1e9e6111 100644 --- a/parsers/default-backend.go +++ b/parsers/default-backend.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/default-server.go b/parsers/default-server.go index b4bf9115..a26bc922 100644 --- a/parsers/default-server.go +++ b/parsers/default-server.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/default-server_generated.go b/parsers/default-server_generated.go index a5b50783..8e3c2dde 100644 --- a/parsers/default-server_generated.go +++ b/parsers/default-server_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/default_backend_generated.go b/parsers/default_backend_generated.go index 15c18d90..e26356ef 100644 --- a/parsers/default_backend_generated.go +++ b/parsers/default_backend_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/errorfile.go b/parsers/errorfile.go index ca3564fb..93a21877 100644 --- a/parsers/errorfile.go +++ b/parsers/errorfile.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/errorfile_generated.go b/parsers/errorfile_generated.go index 33abf57d..61679366 100644 --- a/parsers/errorfile_generated.go +++ b/parsers/errorfile_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/extra/comments.go b/parsers/extra/comments.go index 4702f4c9..b06a1264 100644 --- a/parsers/extra/comments.go +++ b/parsers/extra/comments.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package extra import ( diff --git a/parsers/extra/comments_generated.go b/parsers/extra/comments_generated.go index 152ee14e..3b9bd497 100644 --- a/parsers/extra/comments_generated.go +++ b/parsers/extra/comments_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package extra import ( diff --git a/parsers/extra/config-version.go b/parsers/extra/config-version.go index 835dead9..2a4c6205 100644 --- a/parsers/extra/config-version.go +++ b/parsers/extra/config-version.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package extra import ( diff --git a/parsers/extra/config-version_generated.go b/parsers/extra/config-version_generated.go index 57d97b5f..5f6e5b33 100644 --- a/parsers/extra/config-version_generated.go +++ b/parsers/extra/config-version_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package extra import ( diff --git a/parsers/extra/section.go b/parsers/extra/section.go index f69499cf..f4b650f1 100644 --- a/parsers/extra/section.go +++ b/parsers/extra/section.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package extra import ( diff --git a/parsers/extra/section_generated.go b/parsers/extra/section_generated.go index e3c85acc..0f1a084b 100644 --- a/parsers/extra/section_generated.go +++ b/parsers/extra/section_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package extra import ( diff --git a/parsers/extra/unprocessed.go b/parsers/extra/unprocessed.go index b38c89aa..c092ebef 100644 --- a/parsers/extra/unprocessed.go +++ b/parsers/extra/unprocessed.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package extra import ( diff --git a/parsers/extra/unprocessed_generated.go b/parsers/extra/unprocessed_generated.go index 48dfe248..29bc46db 100644 --- a/parsers/extra/unprocessed_generated.go +++ b/parsers/extra/unprocessed_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package extra import ( diff --git a/parsers/filters/filter-cache.go b/parsers/filters/filter-cache.go index 5fe396ca..fc085aa9 100644 --- a/parsers/filters/filter-cache.go +++ b/parsers/filters/filter-cache.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package filters import ( diff --git a/parsers/filters/filter-compression.go b/parsers/filters/filter-compression.go index 35b2fb8f..47392285 100644 --- a/parsers/filters/filter-compression.go +++ b/parsers/filters/filter-compression.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package filters import ( diff --git a/parsers/filters/filter-spoe.go b/parsers/filters/filter-spoe.go index 686740cd..eea5d357 100644 --- a/parsers/filters/filter-spoe.go +++ b/parsers/filters/filter-spoe.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package filters import ( diff --git a/parsers/filters/filter-trace.go b/parsers/filters/filter-trace.go index aa706830..c9950aa6 100644 --- a/parsers/filters/filter-trace.go +++ b/parsers/filters/filter-trace.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package filters import ( diff --git a/parsers/filters/filter.go b/parsers/filters/filter.go index 3e5b25fb..4b2b07dc 100644 --- a/parsers/filters/filter.go +++ b/parsers/filters/filter.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package filters import ( diff --git a/parsers/filters/filter_generated.go b/parsers/filters/filter_generated.go index 46939734..901449b6 100644 --- a/parsers/filters/filter_generated.go +++ b/parsers/filters/filter_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package filters import ( diff --git a/parsers/group.go b/parsers/group.go index 33b861a0..69cdf0d1 100644 --- a/parsers/group.go +++ b/parsers/group.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/group_generated.go b/parsers/group_generated.go index dd33e6d8..71795937 100644 --- a/parsers/group_generated.go +++ b/parsers/group_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/http/actions/add-acl.go b/parsers/http/actions/add-acl.go index 2ed1d3cc..16b85d59 100644 --- a/parsers/http/actions/add-acl.go +++ b/parsers/http/actions/add-acl.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/add-header.go b/parsers/http/actions/add-header.go index 19ef0875..1821bd93 100644 --- a/parsers/http/actions/add-header.go +++ b/parsers/http/actions/add-header.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/allow.go b/parsers/http/actions/allow.go index 7e26ec06..02ebc194 100644 --- a/parsers/http/actions/allow.go +++ b/parsers/http/actions/allow.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/auth.go b/parsers/http/actions/auth.go index da8017e0..9641c5e5 100644 --- a/parsers/http/actions/auth.go +++ b/parsers/http/actions/auth.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/del-acl.go b/parsers/http/actions/del-acl.go index 058e898d..c3e974d5 100644 --- a/parsers/http/actions/del-acl.go +++ b/parsers/http/actions/del-acl.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/del-header.go b/parsers/http/actions/del-header.go index c14d880f..9fefe320 100644 --- a/parsers/http/actions/del-header.go +++ b/parsers/http/actions/del-header.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/deny.go b/parsers/http/actions/deny.go index 1e8e1254..768f16f1 100644 --- a/parsers/http/actions/deny.go +++ b/parsers/http/actions/deny.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/redirect.go b/parsers/http/actions/redirect.go index c6f68aff..1a2557c5 100644 --- a/parsers/http/actions/redirect.go +++ b/parsers/http/actions/redirect.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/reject.go b/parsers/http/actions/reject.go index 4148cdc9..3a1acb1c 100644 --- a/parsers/http/actions/reject.go +++ b/parsers/http/actions/reject.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/replace-header.go b/parsers/http/actions/replace-header.go index b10a00a1..c29b73ea 100644 --- a/parsers/http/actions/replace-header.go +++ b/parsers/http/actions/replace-header.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/replace-value.go b/parsers/http/actions/replace-value.go index d4450c63..a10d4c34 100644 --- a/parsers/http/actions/replace-value.go +++ b/parsers/http/actions/replace-value.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/send-spoe-group.go b/parsers/http/actions/send-spoe-group.go index 88aaa0be..e9de7cc5 100644 --- a/parsers/http/actions/send-spoe-group.go +++ b/parsers/http/actions/send-spoe-group.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/set-header.go b/parsers/http/actions/set-header.go index eb714c47..ba60d302 100644 --- a/parsers/http/actions/set-header.go +++ b/parsers/http/actions/set-header.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/set-log-level.go b/parsers/http/actions/set-log-level.go index 2a8876dd..440679d1 100644 --- a/parsers/http/actions/set-log-level.go +++ b/parsers/http/actions/set-log-level.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/set-status.go b/parsers/http/actions/set-status.go index a8331d04..3ea5986a 100644 --- a/parsers/http/actions/set-status.go +++ b/parsers/http/actions/set-status.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/set-var.go b/parsers/http/actions/set-var.go index daecc854..0058a673 100644 --- a/parsers/http/actions/set-var.go +++ b/parsers/http/actions/set-var.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/actions/tarpit.go b/parsers/http/actions/tarpit.go index b60ca707..6c6ddf40 100644 --- a/parsers/http/actions/tarpit.go +++ b/parsers/http/actions/tarpit.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/http/http-request.go b/parsers/http/http-request.go index afe9daaa..c1ee1235 100644 --- a/parsers/http/http-request.go +++ b/parsers/http/http-request.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package http import ( diff --git a/parsers/http/http-request_generated.go b/parsers/http/http-request_generated.go index 26157e93..5ce42cae 100644 --- a/parsers/http/http-request_generated.go +++ b/parsers/http/http-request_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package http import ( diff --git a/parsers/http/http-response.go b/parsers/http/http-response.go index 31e6b3d0..31d56ec4 100644 --- a/parsers/http/http-response.go +++ b/parsers/http/http-response.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package http import ( diff --git a/parsers/http/http-response_generated.go b/parsers/http/http-response_generated.go index 644b9c9c..1b4bfab6 100644 --- a/parsers/http/http-response_generated.go +++ b/parsers/http/http-response_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package http import ( diff --git a/parsers/http/redirect.go b/parsers/http/redirect.go index 9a3e6688..866bdada 100644 --- a/parsers/http/redirect.go +++ b/parsers/http/redirect.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package http import ( diff --git a/parsers/http/redirect_generated.go b/parsers/http/redirect_generated.go index 95ab03d6..6452af75 100644 --- a/parsers/http/redirect_generated.go +++ b/parsers/http/redirect_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package http import ( diff --git a/parsers/log.go b/parsers/log.go index 91c0dc2b..7fbe190a 100644 --- a/parsers/log.go +++ b/parsers/log.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/log_generated.go b/parsers/log_generated.go index 94c58ea6..7d8d7c77 100644 --- a/parsers/log_generated.go +++ b/parsers/log_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/mailer.go b/parsers/mailer.go index 0eb00c0a..512ee9bd 100644 --- a/parsers/mailer.go +++ b/parsers/mailer.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/mailer_generated.go b/parsers/mailer_generated.go index c3fd4621..27b27817 100644 --- a/parsers/mailer_generated.go +++ b/parsers/mailer_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/master-worker.go b/parsers/master-worker.go index c8736725..696a5c64 100644 --- a/parsers/master-worker.go +++ b/parsers/master-worker.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/master-worker_generated.go b/parsers/master-worker_generated.go index c66e894a..612e8b67 100644 --- a/parsers/master-worker_generated.go +++ b/parsers/master-worker_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/maxconn.go b/parsers/maxconn.go index 0688c734..893421c4 100644 --- a/parsers/maxconn.go +++ b/parsers/maxconn.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/maxconn_generated.go b/parsers/maxconn_generated.go index 124d85fb..24aeba17 100644 --- a/parsers/maxconn_generated.go +++ b/parsers/maxconn_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/mode.go b/parsers/mode.go index a63cd021..e90b6232 100644 --- a/parsers/mode.go +++ b/parsers/mode.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/mode_generated.go b/parsers/mode_generated.go index dd857227..92cbd558 100644 --- a/parsers/mode_generated.go +++ b/parsers/mode_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/nameserver.go b/parsers/nameserver.go index 4e53b599..089a949b 100644 --- a/parsers/nameserver.go +++ b/parsers/nameserver.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/nameserver_generated.go b/parsers/nameserver_generated.go index 74ab38f5..3baebbc4 100644 --- a/parsers/nameserver_generated.go +++ b/parsers/nameserver_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/nbproc.go b/parsers/nbproc.go index 8ba95c3f..3b0aee0e 100644 --- a/parsers/nbproc.go +++ b/parsers/nbproc.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/nbproc_generated.go b/parsers/nbproc_generated.go index 396ff920..596b177c 100644 --- a/parsers/nbproc_generated.go +++ b/parsers/nbproc_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/nbthread.go b/parsers/nbthread.go index 89a1bde8..33ee457f 100644 --- a/parsers/nbthread.go +++ b/parsers/nbthread.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/nbthread_generated.go b/parsers/nbthread_generated.go index e7ff7dda..633dfc7e 100644 --- a/parsers/nbthread_generated.go +++ b/parsers/nbthread_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/option-forwardfor.go b/parsers/option-forwardfor.go index db002fc1..d300d828 100644 --- a/parsers/option-forwardfor.go +++ b/parsers/option-forwardfor.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/option-forwardfor_generated.go b/parsers/option-forwardfor_generated.go index bdaf25fa..c034ad08 100644 --- a/parsers/option-forwardfor_generated.go +++ b/parsers/option-forwardfor_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/option-httpchk.go b/parsers/option-httpchk.go index f6bbc227..b338681e 100644 --- a/parsers/option-httpchk.go +++ b/parsers/option-httpchk.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/option-httpchk_generated.go b/parsers/option-httpchk_generated.go index e5b43f20..c4085ebd 100644 --- a/parsers/option-httpchk_generated.go +++ b/parsers/option-httpchk_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/option-httplog.go b/parsers/option-httplog.go index be90983a..ccd9d138 100644 --- a/parsers/option-httplog.go +++ b/parsers/option-httplog.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/option-httplog_generated.go b/parsers/option-httplog_generated.go index 8f32cc85..ff395807 100644 --- a/parsers/option-httplog_generated.go +++ b/parsers/option-httplog_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/option-mysql-check.go b/parsers/option-mysql-check.go index b2e24f68..e7ed224f 100644 --- a/parsers/option-mysql-check.go +++ b/parsers/option-mysql-check.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/option-mysql-check_generated.go b/parsers/option-mysql-check_generated.go index cc660f54..1b72d463 100644 --- a/parsers/option-mysql-check_generated.go +++ b/parsers/option-mysql-check_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/option-redispatch.go b/parsers/option-redispatch.go index be7304b8..23ec15fa 100644 --- a/parsers/option-redispatch.go +++ b/parsers/option-redispatch.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/option-redispatch_generated.go b/parsers/option-redispatch_generated.go index 34b0bcab..6ec2fba2 100644 --- a/parsers/option-redispatch_generated.go +++ b/parsers/option-redispatch_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/option-smtpchk.go b/parsers/option-smtpchk.go index ed8be20f..807a80b6 100644 --- a/parsers/option-smtpchk.go +++ b/parsers/option-smtpchk.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/option-smtpchk_generated.go b/parsers/option-smtpchk_generated.go index 91e678ef..67efeaf3 100644 --- a/parsers/option-smtpchk_generated.go +++ b/parsers/option-smtpchk_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/peer.go b/parsers/peer.go index 5207a53d..68c0e139 100644 --- a/parsers/peer.go +++ b/parsers/peer.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/peer_generated.go b/parsers/peer_generated.go index 64bb4890..8334f43e 100644 --- a/parsers/peer_generated.go +++ b/parsers/peer_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/server.go b/parsers/server.go index ef9bf67c..33dd9a9b 100644 --- a/parsers/server.go +++ b/parsers/server.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/server_generated.go b/parsers/server_generated.go index ddc434ce..e034439e 100644 --- a/parsers/server_generated.go +++ b/parsers/server_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/simple/simple-number.go b/parsers/simple/simple-number.go index 1998a022..4ccc74d8 100644 --- a/parsers/simple/simple-number.go +++ b/parsers/simple/simple-number.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package simple import ( diff --git a/parsers/simple/simple-number_generated.go b/parsers/simple/simple-number_generated.go index e3f72df4..97a65590 100644 --- a/parsers/simple/simple-number_generated.go +++ b/parsers/simple/simple-number_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package simple import ( diff --git a/parsers/simple/simple-option.go b/parsers/simple/simple-option.go index 9f6ba9ee..dae43412 100644 --- a/parsers/simple/simple-option.go +++ b/parsers/simple/simple-option.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package simple import ( diff --git a/parsers/simple/simple-option_generated.go b/parsers/simple/simple-option_generated.go index 5cfcb1e7..fcc11cd9 100644 --- a/parsers/simple/simple-option_generated.go +++ b/parsers/simple/simple-option_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package simple import ( diff --git a/parsers/simple/simple-string.go b/parsers/simple/simple-string.go index d1c0112e..b8f224f1 100644 --- a/parsers/simple/simple-string.go +++ b/parsers/simple/simple-string.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package simple import ( diff --git a/parsers/simple/simple-string_generated.go b/parsers/simple/simple-string_generated.go index c1513aab..11d04c72 100644 --- a/parsers/simple/simple-string_generated.go +++ b/parsers/simple/simple-string_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package simple import ( diff --git a/parsers/simple/simple-time-two-words.go b/parsers/simple/simple-time-two-words.go index 2764def1..747f4369 100644 --- a/parsers/simple/simple-time-two-words.go +++ b/parsers/simple/simple-time-two-words.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package simple import ( diff --git a/parsers/simple/simple-time-two-words_generated.go b/parsers/simple/simple-time-two-words_generated.go index 4b15943b..94701eb8 100644 --- a/parsers/simple/simple-time-two-words_generated.go +++ b/parsers/simple/simple-time-two-words_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package simple import ( diff --git a/parsers/simple/simple-time.go b/parsers/simple/simple-time.go index dccaa6b7..9f97a88c 100644 --- a/parsers/simple/simple-time.go +++ b/parsers/simple/simple-time.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package simple import ( diff --git a/parsers/simple/simple-time_generated.go b/parsers/simple/simple-time_generated.go index f174e84b..a359b4e0 100644 --- a/parsers/simple/simple-time_generated.go +++ b/parsers/simple/simple-time_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package simple import ( diff --git a/parsers/simple/simple-timeout.go b/parsers/simple/simple-timeout.go index 00e8b8cf..e7fc5d95 100644 --- a/parsers/simple/simple-timeout.go +++ b/parsers/simple/simple-timeout.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package simple import ( diff --git a/parsers/simple/simple-timeout_generated.go b/parsers/simple/simple-timeout_generated.go index fa460a13..a09a2fe3 100644 --- a/parsers/simple/simple-timeout_generated.go +++ b/parsers/simple/simple-timeout_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package simple import ( diff --git a/parsers/simple/simple-word.go b/parsers/simple/simple-word.go index 86f2f30b..564c2f61 100644 --- a/parsers/simple/simple-word.go +++ b/parsers/simple/simple-word.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package simple import ( diff --git a/parsers/simple/simple-word_generated.go b/parsers/simple/simple-word_generated.go index affb0236..a185172a 100644 --- a/parsers/simple/simple-word_generated.go +++ b/parsers/simple/simple-word_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package simple import ( diff --git a/parsers/stats-socket.go b/parsers/stats-socket.go index ed5e0099..7add487f 100644 --- a/parsers/stats-socket.go +++ b/parsers/stats-socket.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/stats-socket_generated.go b/parsers/stats-socket_generated.go index 6f03bf08..421f15b1 100644 --- a/parsers/stats-socket_generated.go +++ b/parsers/stats-socket_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/stats-timeout.go b/parsers/stats-timeout.go index 4f500979..60e1bc95 100644 --- a/parsers/stats-timeout.go +++ b/parsers/stats-timeout.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/stats-timeout_generated.go b/parsers/stats-timeout_generated.go index 356b3d8a..26f4f702 100644 --- a/parsers/stats-timeout_generated.go +++ b/parsers/stats-timeout_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/stick-table.go b/parsers/stick-table.go index 54226144..69f43af2 100644 --- a/parsers/stick-table.go +++ b/parsers/stick-table.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/stick-table_generated.go b/parsers/stick-table_generated.go index 8cb82d6b..e4b3d0e2 100644 --- a/parsers/stick-table_generated.go +++ b/parsers/stick-table_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/stick.go b/parsers/stick.go index 3db95246..03f829a5 100644 --- a/parsers/stick.go +++ b/parsers/stick.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/stick_generated.go b/parsers/stick_generated.go index fdf2e351..c475c2ff 100644 --- a/parsers/stick_generated.go +++ b/parsers/stick_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/tcp/actions/connection.go b/parsers/tcp/actions/connection.go index 1e56e5e8..76de36b5 100644 --- a/parsers/tcp/actions/connection.go +++ b/parsers/tcp/actions/connection.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/tcp/actions/content.go b/parsers/tcp/actions/content.go index 6c064967..dad68b76 100644 --- a/parsers/tcp/actions/content.go +++ b/parsers/tcp/actions/content.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/tcp/actions/inspect-delay.go b/parsers/tcp/actions/inspect-delay.go index fa20fb59..0de1cc7b 100644 --- a/parsers/tcp/actions/inspect-delay.go +++ b/parsers/tcp/actions/inspect-delay.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/tcp/actions/session.go b/parsers/tcp/actions/session.go index c6689298..3c37f931 100644 --- a/parsers/tcp/actions/session.go +++ b/parsers/tcp/actions/session.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package actions import ( diff --git a/parsers/tcp/tcp-request.go b/parsers/tcp/tcp-request.go index 1eaa34ca..8006fd28 100644 --- a/parsers/tcp/tcp-request.go +++ b/parsers/tcp/tcp-request.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tcp import ( diff --git a/parsers/tcp/tcp-request_generated.go b/parsers/tcp/tcp-request_generated.go index 6886b6f5..7fe7fb2d 100644 --- a/parsers/tcp/tcp-request_generated.go +++ b/parsers/tcp/tcp-request_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package tcp import ( diff --git a/parsers/tcp/tcp-response.go b/parsers/tcp/tcp-response.go index d83a9042..b5996be1 100644 --- a/parsers/tcp/tcp-response.go +++ b/parsers/tcp/tcp-response.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tcp import ( diff --git a/parsers/tcp/tcp-response_generated.go b/parsers/tcp/tcp-response_generated.go index dd345d93..85c133d7 100644 --- a/parsers/tcp/tcp-response_generated.go +++ b/parsers/tcp/tcp-response_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package tcp import ( diff --git a/parsers/use-backend.go b/parsers/use-backend.go index 62ad88fe..addcbae8 100644 --- a/parsers/use-backend.go +++ b/parsers/use-backend.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/use-server.go b/parsers/use-server.go index 72efc7a2..ed980737 100644 --- a/parsers/use-server.go +++ b/parsers/use-server.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/use-server_generated.go b/parsers/use-server_generated.go index e1e11896..651bdabc 100644 --- a/parsers/use-server_generated.go +++ b/parsers/use-server_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/use_backend_generated.go b/parsers/use_backend_generated.go index 2b3960fe..846d67a6 100644 --- a/parsers/use_backend_generated.go +++ b/parsers/use_backend_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/parsers/user.go b/parsers/user.go index d6c82aa3..645f0609 100644 --- a/parsers/user.go +++ b/parsers/user.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parsers import ( diff --git a/parsers/user_generated.go b/parsers/user_generated.go index 931928c7..5071e71c 100644 --- a/parsers/user_generated.go +++ b/parsers/user_generated.go @@ -1,4 +1,19 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ package parsers import ( diff --git a/section-parsers.go b/section-parsers.go index 988c2dfd..ab8295a1 100644 --- a/section-parsers.go +++ b/section-parsers.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package parser import ( diff --git a/tests/acl_generated_test.go b/tests/acl_generated_test.go index f0d955ef..e4e061fc 100644 --- a/tests/acl_generated_test.go +++ b/tests/acl_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/balance_generated_test.go b/tests/balance_generated_test.go index ba14b03a..65bbefce 100644 --- a/tests/balance_generated_test.go +++ b/tests/balance_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/bind_generated_test.go b/tests/bind_generated_test.go index c4c7bfe4..6f938faa 100644 --- a/tests/bind_generated_test.go +++ b/tests/bind_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/common.go b/tests/common.go index 998e15be..fb026ea2 100644 --- a/tests/common.go +++ b/tests/common.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/cpu-map_generated_test.go b/tests/cpu-map_generated_test.go index 0ec4c8aa..60b4a52b 100644 --- a/tests/cpu-map_generated_test.go +++ b/tests/cpu-map_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/daemon_generated_test.go b/tests/daemon_generated_test.go index 4ab9b59d..264ccee1 100644 --- a/tests/daemon_generated_test.go +++ b/tests/daemon_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/default-server_generated_test.go b/tests/default-server_generated_test.go index a8153c94..881326c3 100644 --- a/tests/default-server_generated_test.go +++ b/tests/default-server_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/default_backend_generated_test.go b/tests/default_backend_generated_test.go index 4b76fad0..45146fe6 100644 --- a/tests/default_backend_generated_test.go +++ b/tests/default_backend_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/errorfile_generated_test.go b/tests/errorfile_generated_test.go index c2b49d8c..53baa177 100644 --- a/tests/errorfile_generated_test.go +++ b/tests/errorfile_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/group_generated_test.go b/tests/group_generated_test.go index 1a629a87..790d8ac8 100644 --- a/tests/group_generated_test.go +++ b/tests/group_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/log_generated_test.go b/tests/log_generated_test.go index 3b74fa93..6ad774a4 100644 --- a/tests/log_generated_test.go +++ b/tests/log_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/mailer_generated_test.go b/tests/mailer_generated_test.go index 906a99ce..1bfd2d97 100644 --- a/tests/mailer_generated_test.go +++ b/tests/mailer_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/master-worker_generated_test.go b/tests/master-worker_generated_test.go index d168a726..cc6c6e83 100644 --- a/tests/master-worker_generated_test.go +++ b/tests/master-worker_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/maxconn_generated_test.go b/tests/maxconn_generated_test.go index b4a48160..1a22328b 100644 --- a/tests/maxconn_generated_test.go +++ b/tests/maxconn_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/mode_generated_test.go b/tests/mode_generated_test.go index f80141c3..31459ad8 100644 --- a/tests/mode_generated_test.go +++ b/tests/mode_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/nameserver_generated_test.go b/tests/nameserver_generated_test.go index 98e1994c..2a8c6805 100644 --- a/tests/nameserver_generated_test.go +++ b/tests/nameserver_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/nbproc_generated_test.go b/tests/nbproc_generated_test.go index 4f9e3df2..818fe021 100644 --- a/tests/nbproc_generated_test.go +++ b/tests/nbproc_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/nbthread_generated_test.go b/tests/nbthread_generated_test.go index 373fe139..56703760 100644 --- a/tests/nbthread_generated_test.go +++ b/tests/nbthread_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/option-forwardfor_generated_test.go b/tests/option-forwardfor_generated_test.go index 8363e424..2e6f2b05 100644 --- a/tests/option-forwardfor_generated_test.go +++ b/tests/option-forwardfor_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/option-httpchk_generated_test.go b/tests/option-httpchk_generated_test.go index 105fc96b..438e6b5c 100644 --- a/tests/option-httpchk_generated_test.go +++ b/tests/option-httpchk_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/option-httplog_generated_test.go b/tests/option-httplog_generated_test.go index 3f9ff150..ae14a0b3 100644 --- a/tests/option-httplog_generated_test.go +++ b/tests/option-httplog_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/option-mysql-check_generated_test.go b/tests/option-mysql-check_generated_test.go index a54cee19..8d368afe 100644 --- a/tests/option-mysql-check_generated_test.go +++ b/tests/option-mysql-check_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/option-redispatch_generated_test.go b/tests/option-redispatch_generated_test.go index ec6f792f..5eea161b 100644 --- a/tests/option-redispatch_generated_test.go +++ b/tests/option-redispatch_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/option-smtpchk_generated_test.go b/tests/option-smtpchk_generated_test.go index fb59b8bb..6e6c766e 100644 --- a/tests/option-smtpchk_generated_test.go +++ b/tests/option-smtpchk_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/peer_generated_test.go b/tests/peer_generated_test.go index 12f92b47..f92b85e8 100644 --- a/tests/peer_generated_test.go +++ b/tests/peer_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/server_generated_test.go b/tests/server_generated_test.go index 160dc8e0..99304540 100644 --- a/tests/server_generated_test.go +++ b/tests/server_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/stats-socket_generated_test.go b/tests/stats-socket_generated_test.go index c3c07b45..d7b229d6 100644 --- a/tests/stats-socket_generated_test.go +++ b/tests/stats-socket_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/stats-timeout_generated_test.go b/tests/stats-timeout_generated_test.go index bfb9a585..203c2438 100644 --- a/tests/stats-timeout_generated_test.go +++ b/tests/stats-timeout_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/stick-table_generated_test.go b/tests/stick-table_generated_test.go index 090eb8ac..943504c3 100644 --- a/tests/stick-table_generated_test.go +++ b/tests/stick-table_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/stick_generated_test.go b/tests/stick_generated_test.go index f43f2a0e..7fab4f47 100644 --- a/tests/stick_generated_test.go +++ b/tests/stick_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/use-server_generated_test.go b/tests/use-server_generated_test.go index b1860857..96e76e16 100644 --- a/tests/use-server_generated_test.go +++ b/tests/use-server_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/use_backend_generated_test.go b/tests/use_backend_generated_test.go index c696a50a..e4cc8e0b 100644 --- a/tests/use_backend_generated_test.go +++ b/tests/use_backend_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/tests/user_generated_test.go b/tests/user_generated_test.go index 27341bfb..19c135c3 100644 --- a/tests/user_generated_test.go +++ b/tests/user_generated_test.go @@ -1,4 +1,20 @@ // Code generated by go generate; DO NOT EDIT. +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package tests import ( diff --git a/types/types-generic.go b/types/types-generic.go index e5515307..aedbc6f8 100644 --- a/types/types-generic.go +++ b/types/types-generic.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package types //Enabled is used by parsers Daemon, MasterWorker diff --git a/types/types-other.go b/types/types-other.go index 7065414b..7b9e96fe 100644 --- a/types/types-other.go +++ b/types/types-other.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package types import "github.com/haproxytech/config-parser/common" diff --git a/types/types.go b/types/types.go index 4201b989..e5a7cd1f 100644 --- a/types/types.go +++ b/types/types.go @@ -1,3 +1,19 @@ +/* +Copyright 2019 HAProxy Technologies + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +*/ + package types import "github.com/haproxytech/config-parser/params"