ldapconfiguration.go 879 B

1234567891011121314151617181920
  1. // Copyright (C) 2018 The Syncthing Authors.
  2. //
  3. // This Source Code Form is subject to the terms of the Mozilla Public
  4. // License, v. 2.0. If a copy of the MPL was not distributed with this file,
  5. // You can obtain one at https://mozilla.org/MPL/2.0/.
  6. package config
  7. type LDAPConfiguration struct {
  8. Address string `xml:"address,omitempty" json:"address"`
  9. BindDN string `xml:"bindDN,omitempty" json:"bindDN"`
  10. Transport LDAPTransport `xml:"transport,omitempty" json:"transport"`
  11. InsecureSkipVerify bool `xml:"insecureSkipVerify,omitempty" json:"insecureSkipVerify" default:"false"`
  12. SearchBaseDN string `xml:"searchBaseDN,omitempty" json:"searchBaseDN"`
  13. SearchFilter string `xml:"searchFilter,omitempty" json:"searchFilter"`
  14. }
  15. func (c LDAPConfiguration) Copy() LDAPConfiguration {
  16. return c
  17. }