summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/olahol/melody/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/olahol/melody/config.go')
-rw-r--r--vendor/github.com/olahol/melody/config.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/github.com/olahol/melody/config.go b/vendor/github.com/olahol/melody/config.go
new file mode 100644
index 00000000..81ebd057
--- /dev/null
+++ b/vendor/github.com/olahol/melody/config.go
@@ -0,0 +1,22 @@
+package melody
+
+import "time"
+
+// Config melody configuration struct.
+type Config struct {
+ WriteWait time.Duration // Milliseconds until write times out.
+ PongWait time.Duration // Timeout for waiting on pong.
+ PingPeriod time.Duration // Milliseconds between pings.
+ MaxMessageSize int64 // Maximum size in bytes of a message.
+ MessageBufferSize int // The max amount of messages that can be in a sessions buffer before it starts dropping them.
+}
+
+func newConfig() *Config {
+ return &Config{
+ WriteWait: 10 * time.Second,
+ PongWait: 60 * time.Second,
+ PingPeriod: (60 * time.Second * 9) / 10,
+ MaxMessageSize: 512,
+ MessageBufferSize: 256,
+ }
+}