All Downloads are FREE. Search and download functionalities are using the official Maven repository.

common.messages.ipc.go Maven / Gradle / Ivy

There is a newer version: 2.9.1
Show newest version
package messages

import (
	"errors"
)

type Arg struct {
	Body       []byte
	RemoteAddr string
}

var (
	ErrBadRequest = errors.New("bad request")
	ErrInternal   = errors.New("internal error")
	ErrExtraInfo  = errors.New("client sent extra info")

	StrTimedOut  = "timed out waiting for answer!"
	StrNoProxies = "no snowflake proxies currently available"
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy