67 lines
1.3 KiB
Go
67 lines
1.3 KiB
Go
package ws
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
mdata "github.com/go-gost/core/metadata"
|
|
)
|
|
|
|
const (
|
|
defaultPath = "/ws"
|
|
defaultBacklog = 128
|
|
)
|
|
|
|
type metadata struct {
|
|
path string
|
|
backlog int
|
|
|
|
handshakeTimeout time.Duration
|
|
readHeaderTimeout time.Duration
|
|
readBufferSize int
|
|
writeBufferSize int
|
|
enableCompression bool
|
|
|
|
header http.Header
|
|
}
|
|
|
|
func (l *wsListener) parseMetadata(md mdata.Metadata) (err error) {
|
|
const (
|
|
path = "path"
|
|
backlog = "backlog"
|
|
|
|
handshakeTimeout = "handshakeTimeout"
|
|
readHeaderTimeout = "readHeaderTimeout"
|
|
readBufferSize = "readBufferSize"
|
|
writeBufferSize = "writeBufferSize"
|
|
enableCompression = "enableCompression"
|
|
|
|
header = "header"
|
|
)
|
|
|
|
l.md.path = mdata.GetString(md, path)
|
|
if l.md.path == "" {
|
|
l.md.path = defaultPath
|
|
}
|
|
|
|
l.md.backlog = mdata.GetInt(md, backlog)
|
|
if l.md.backlog <= 0 {
|
|
l.md.backlog = defaultBacklog
|
|
}
|
|
|
|
l.md.handshakeTimeout = mdata.GetDuration(md, handshakeTimeout)
|
|
l.md.readHeaderTimeout = mdata.GetDuration(md, readHeaderTimeout)
|
|
l.md.readBufferSize = mdata.GetInt(md, readBufferSize)
|
|
l.md.writeBufferSize = mdata.GetInt(md, writeBufferSize)
|
|
l.md.enableCompression = mdata.GetBool(md, enableCompression)
|
|
|
|
if mm := mdata.GetStringMapString(md, header); len(mm) > 0 {
|
|
hd := http.Header{}
|
|
for k, v := range mm {
|
|
hd.Add(k, v)
|
|
}
|
|
l.md.header = hd
|
|
}
|
|
return
|
|
}
|