config.go 503 B

12345678910111213141516171819202122232425262728
  1. package server
  2. import (
  3. "context"
  4. "time"
  5. )
  6. type Config struct {
  7. BindAddress string
  8. RemoteAddress string
  9. Timeout time.Duration
  10. IdleTimeout time.Duration
  11. BaseContext context.Context
  12. PSKCallback func([]byte) ([]byte, error)
  13. }
  14. func (cfg *Config) populateDefaults() *Config {
  15. newCfg := new(Config)
  16. *newCfg = *cfg
  17. cfg = newCfg
  18. if cfg.BaseContext == nil {
  19. cfg.BaseContext = context.Background()
  20. }
  21. if cfg.IdleTimeout == 0 {
  22. cfg.IdleTimeout = 90 * time.Second
  23. }
  24. return cfg
  25. }