config.go 692 B

123456789101112131415161718192021222324252627282930313233343536
  1. package client
  2. import (
  3. "context"
  4. "time"
  5. "github.com/Snawoot/dtlspipe/ciphers"
  6. )
  7. type Config struct {
  8. BindAddress string
  9. RemoteAddress string
  10. Timeout time.Duration
  11. IdleTimeout time.Duration
  12. BaseContext context.Context
  13. PSKCallback func([]byte) ([]byte, error)
  14. PSKIdentity string
  15. MTU int
  16. CipherSuites ciphers.CipherList
  17. }
  18. func (cfg *Config) populateDefaults() *Config {
  19. newCfg := new(Config)
  20. *newCfg = *cfg
  21. cfg = newCfg
  22. if cfg.BaseContext == nil {
  23. cfg.BaseContext = context.Background()
  24. }
  25. if cfg.IdleTimeout == 0 {
  26. cfg.IdleTimeout = 90 * time.Second
  27. }
  28. if cfg.CipherSuites == nil {
  29. cfg.CipherSuites = ciphers.DefaultList
  30. }
  31. return cfg
  32. }