config.go 824 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. EllipticCurves ciphers.CurveList
  18. }
  19. func (cfg *Config) populateDefaults() *Config {
  20. newCfg := new(Config)
  21. *newCfg = *cfg
  22. cfg = newCfg
  23. if cfg.BaseContext == nil {
  24. cfg.BaseContext = context.Background()
  25. }
  26. if cfg.IdleTimeout == 0 {
  27. cfg.IdleTimeout = 90 * time.Second
  28. }
  29. if cfg.CipherSuites == nil {
  30. cfg.CipherSuites = ciphers.DefaultCipherList
  31. }
  32. if cfg.EllipticCurves == nil {
  33. cfg.EllipticCurves = ciphers.DefaultCurveList
  34. }
  35. return cfg
  36. }