23 lines
483 B
Go
23 lines
483 B
Go
package melody
|
|
|
|
import "time"
|
|
|
|
// Melody configuration, all times in milliseconds.
|
|
type Config struct {
|
|
WriteWait time.Duration
|
|
PongWait time.Duration
|
|
PingPeriod time.Duration
|
|
MaxMessageSize int64
|
|
MessageBufferSize int
|
|
}
|
|
|
|
func newConfig() *Config {
|
|
return &Config{
|
|
WriteWait: 10 * time.Second,
|
|
PongWait: 60 * time.Second,
|
|
PingPeriod: (60 * time.Second * 9) / 10,
|
|
MaxMessageSize: 512,
|
|
MessageBufferSize: 256,
|
|
}
|
|
}
|