mirror of
https://github.com/openp2p-cn/openp2p.git
synced 2026-02-04 10:53:25 +08:00
14 lines
253 B
Go
14 lines
253 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// error message
|
|
var (
|
|
// ErrorS2S string = "s2s is not supported"
|
|
// ErrorHandshake string = "handshake error"
|
|
ErrorS2S = errors.New("s2s is not supported")
|
|
ErrorHandshake = errors.New("handshake error")
|
|
)
|