config.go 931 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package server
  2. import (
  3. "context"
  4. "time"
  5. "github.com/Snawoot/dtlspipe/ciphers"
  6. "github.com/Snawoot/dtlspipe/util"
  7. )
  8. type Config struct {
  9. BindAddress string
  10. RemoteAddress string
  11. Timeout time.Duration
  12. IdleTimeout time.Duration
  13. BaseContext context.Context
  14. PSKCallback func([]byte) ([]byte, error)
  15. MTU int
  16. SkipHelloVerify bool
  17. CipherSuites ciphers.CipherList
  18. EllipticCurves ciphers.CurveList
  19. StaleMode util.StaleMode
  20. TimeLimit time.Duration
  21. }
  22. func (cfg *Config) populateDefaults() *Config {
  23. newCfg := new(Config)
  24. *newCfg = *cfg
  25. cfg = newCfg
  26. if cfg.BaseContext == nil {
  27. cfg.BaseContext = context.Background()
  28. }
  29. if cfg.IdleTimeout == 0 {
  30. cfg.IdleTimeout = 90 * time.Second
  31. }
  32. if cfg.CipherSuites == nil {
  33. cfg.CipherSuites = ciphers.DefaultCipherList
  34. }
  35. if cfg.EllipticCurves == nil {
  36. cfg.EllipticCurves = ciphers.DefaultCurveList
  37. }
  38. return cfg
  39. }