websocket.go 225 B

1234567891011121314
  1. package config
  2. import "time"
  3. type websocket struct {
  4. ConnectSize int
  5. MessageSize int
  6. HeartbeatWait time.Duration
  7. ReadWait time.Duration
  8. WriteWait time.Duration
  9. ReadBufferSize int
  10. WriteBufferSize int
  11. }