mirror of
https://github.com/sot-tech/mochi.git
synced 2026-06-12 15:53:32 -07:00
Merge pull request #74 from chihaya/ignoreBadConnInStats
udp: make BadConnID a normal error
This commit is contained in:
+2
-1
@@ -7,6 +7,7 @@ package udp
|
||||
import (
|
||||
"bytes"
|
||||
"encoding/binary"
|
||||
"errors"
|
||||
"net"
|
||||
|
||||
"github.com/chihaya/chihaya/stats"
|
||||
@@ -46,7 +47,7 @@ var (
|
||||
errMalformedPacket = models.ProtocolError("malformed packet")
|
||||
errMalformedIP = models.ProtocolError("malformed IP address")
|
||||
errMalformedEvent = models.ProtocolError("malformed event ID")
|
||||
errBadConnectionID = models.ProtocolError("bad connection ID")
|
||||
errBadConnectionID = errors.New("bad connection ID")
|
||||
)
|
||||
|
||||
// handleTorrentError writes err to w if err is a models.ClientError.
|
||||
|
||||
Reference in New Issue
Block a user