dissertation-2-code/shared/errors.go

7 lines
159 B
Go
Raw Normal View History

2020-10-25 21:44:56 +00:00
package shared
import "errors"
var ErrBadChecksum = errors.New("the packet had a bad checksum")
2020-11-01 18:18:37 +00:00
var ErrDeadConnection = errors.New("the connection is dead")