add handling of all messages from client to client in cgui
This commit is contained in:
parent
245e8986a6
commit
03f23c23b0
|
@ -138,11 +138,19 @@ func readFromWebSocket(conn net.Conn, ws *websocket.Conn) {
|
||||||
log.Printf("client: readWS: sending data to server: %v", answ)
|
log.Printf("client: readWS: sending data to server: %v", answ)
|
||||||
conn.Write(answ)
|
conn.Write(answ)
|
||||||
continue
|
continue
|
||||||
case com.ID_CLIENT_ASK_CLIENT_HANDSHAKE:
|
case com.ID_CLIENT_ASK_CLIENT_HANDSHAKE,
|
||||||
|
com.ID_CLIENT_APPROVE_CLIENT_HANDSHAKE,
|
||||||
|
com.ID_CLIENT_DECLINE_CLIENT_HANDSHAKE,
|
||||||
|
com.ID_CLIENT_SEND_CLIENT_ECDH_PUBKEY,
|
||||||
|
com.ID_CLIENT_SEND_CLIENT_CBES_SPECS,
|
||||||
|
com.ID_CLIENT_SEND_CLIENT_MKLG_FINGERPRINT,
|
||||||
|
com.ID_CLIENT_DECLINE_CLIENT_MKLG_FINGERPRINT,
|
||||||
|
com.ID_CLIENT_SEND_CLIENT_MESSAGE:
|
||||||
if !r.IsRegistered {
|
if !r.IsRegistered {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
msg.FromID = r.ID
|
msg.FromID = r.ID
|
||||||
|
// switch
|
||||||
}
|
}
|
||||||
encodedMsg, err := msg.Bytes()
|
encodedMsg, err := msg.Bytes()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user