matterbridge/vendor/layeh.com/gumble/gumble/accesstokens.go
2020-10-01 22:50:56 +02:00

17 lines
367 B
Go

package gumble
import (
"layeh.com/gumble/gumble/MumbleProto"
)
// AccessTokens are additional passwords that can be provided to the server to
// gain access to restricted channels.
type AccessTokens []string
func (a AccessTokens) writeMessage(client *Client) error {
packet := MumbleProto.Authenticate{
Tokens: a,
}
return client.Conn.WriteProto(&packet)
}