Merge remote-tracking branch 'origin/master' into user-mask

This commit is contained in:
Jeremy Latt 2014-03-07 17:10:14 -08:00
commit cd2042dfea
2 changed files with 2 additions and 1 deletions

View File

@ -39,6 +39,7 @@ func NewClient(server *Server, conn net.Conn) *Client {
now := time.Now()
client := &Client{
atime: now,
authorized: server.password == nil,
capState: CapNone,
capabilities: make(CapabilitySet),
channels: make(ChannelSet),

View File

@ -23,7 +23,7 @@ var (
)
const (
SEM_VER = "ergonomadic-1.2.13"
SEM_VER = "ergonomadic-1.2.14"
CRLF = "\r\n"
MAX_REPLY_LEN = 512 - len(CRLF)