mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
constants: Remove unused constants.
We may re-add MaxReplyLength later as a variable config option, similar to mammon.
This commit is contained in:
parent
3c2fae666a
commit
09802f7181
@ -9,8 +9,6 @@ import "fmt"
|
||||
|
||||
const (
|
||||
SEM_VER = "0.2.0-unreleased"
|
||||
CRLF = "\r\n"
|
||||
MAX_REPLY_LEN = 512 - len(CRLF)
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -32,7 +32,7 @@ type WSContainer struct {
|
||||
func (this WSContainer) Read(msg []byte) (int, error) {
|
||||
ty, bytes, err := this.ReadMessage()
|
||||
if ty == websocket.TextMessage {
|
||||
n := copy(msg, []byte(string(bytes)+CRLF+CRLF))
|
||||
n := copy(msg, []byte(string(bytes)+"\r\n\r\n"))
|
||||
return n, err
|
||||
}
|
||||
// Binary, and other kinds of messages, are thrown away.
|
||||
|
Loading…
Reference in New Issue
Block a user