Browse Source

Added params to session

master
Heikki Uljas 9 years ago
parent
commit
cf8236b938
  1. 1
      melody.go
  2. 11
      session.go

1
melody.go

@ -80,6 +80,7 @@ func (m *Melody) HandleRequest(w http.ResponseWriter, r *http.Request) {
session := &Session{
Request: r,
params: make(map[string]string),
conn: conn,
output: make(chan *envelope, m.Config.MessageBufferSize),
melody: m,

11
session.go

@ -10,6 +10,7 @@ import (
// A melody session.
type Session struct {
Request *http.Request
params map[string]string
conn *websocket.Conn
output chan *envelope
melody *Melody
@ -117,3 +118,13 @@ func (s *Session) WriteBinary(msg []byte) {
func (s *Session) Close() {
s.writeMessage(&envelope{t: websocket.CloseMessage, msg: []byte{}})
}
// Set session param
func (s *Session) SetParam(key string, value string) {
s.params[key] = value
}
// Get session param
func (s *Session) GetParam(key string) string {
return s.params[key]
}
Loading…
Cancel
Save