This commit is contained in:
Liang Ding 2014-09-22 17:34:26 +08:00
parent e5470481f4
commit c025861afc
2 changed files with 0 additions and 4 deletions

View File

@ -22,7 +22,6 @@ import (
// 建立输出通道. // 建立输出通道.
func WSHandler(w http.ResponseWriter, r *http.Request) { func WSHandler(w http.ResponseWriter, r *http.Request) {
// TODO: 会话校验
sid := r.URL.Query()["sid"][0] sid := r.URL.Query()["sid"][0]
conn, _ := websocket.Upgrade(w, r, nil, 1024, 1024) conn, _ := websocket.Upgrade(w, r, nil, 1024, 1024)
@ -331,7 +330,6 @@ func GoInstallHandler(w http.ResponseWriter, r *http.Request) {
return return
} }
// TODO: 会话校验
sid := args["sid"].(string) sid := args["sid"].(string)
filePath := args["file"].(string) filePath := args["file"].(string)
@ -458,7 +456,6 @@ func GoGetHandler(w http.ResponseWriter, r *http.Request) {
return return
} }
// TODO: 会话校验
sid := args["sid"].(string) sid := args["sid"].(string)
filePath := args["file"].(string) filePath := args["file"].(string)

View File

@ -64,7 +64,6 @@ func WSHandler(w http.ResponseWriter, r *http.Request) {
httpSession, _ := session.HTTPSession.Get(r, "wide-session") httpSession, _ := session.HTTPSession.Get(r, "wide-session")
username := httpSession.Values["username"].(string) username := httpSession.Values["username"].(string)
// TODO: 会话校验
sid := r.URL.Query()["sid"][0] sid := r.URL.Query()["sid"][0]
conn, _ := websocket.Upgrade(w, r, nil, 1024, 1024) conn, _ := websocket.Upgrade(w, r, nil, 1024, 1024)