1
0
Fork 0
forked from External/grumble

gofmt run.

This commit is contained in:
Mikkel Krautz 2010-11-20 01:10:08 +01:00
parent a57908b487
commit c2f3f0de47
3 changed files with 55 additions and 54 deletions

View file

@ -114,11 +114,13 @@ func (client *Client) udpreceiver() {
return return
} }
kind := (buf[0] >> 5) & 0x07; kind := (buf[0] >> 5) & 0x07
switch kind { switch kind {
case UDPMessageVoiceSpeex: fallthrough; case UDPMessageVoiceSpeex:
case UDPMessageVoiceCELTAlpha: fallthrough; fallthrough
case UDPMessageVoiceCELTAlpha:
fallthrough
case UDPMessageVoiceCELTBeta: case UDPMessageVoiceCELTBeta:
kind := buf[0] & 0xe0 kind := buf[0] & 0xe0
target := buf[0] & 0x1f target := buf[0] & 0x1f
@ -305,4 +307,3 @@ func (client *Client) sendUserList() {
} }
} }
} }

View file

@ -141,7 +141,7 @@ func (server *Server) handleTextMessage(client *Client, msg *Message) {
return return
} }
users := []*Client{}; users := []*Client{}
for i := 0; i < len(txtmsg.Session); i++ { for i := 0; i < len(txtmsg.Session); i++ {
user, ok := server.clients[txtmsg.Session[i]] user, ok := server.clients[txtmsg.Session[i]]
if !ok { if !ok {

View file

@ -282,7 +282,7 @@ func (server *Server) updateCodecVersions() {
server.PreferAlphaCodec = !server.PreferAlphaCodec server.PreferAlphaCodec = !server.PreferAlphaCodec
} }
if (server.PreferAlphaCodec) { if server.PreferAlphaCodec {
server.AlphaCodec = winner server.AlphaCodec = winner
} else { } else {
server.BetaCodec = winner server.BetaCodec = winner