udp: make BadConnID a normal error
This causes packets that have bad connection IDs to not be recorded as a bad request in our stats. These types of errors to be expected and should balloon our stats. Fixes #72.
This commit is contained in:
parent
9b54f82511
commit
cd7c8dd374
1 changed files with 2 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue