Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TCPClient ¶
type TCPClient struct {
// contains filtered or unexported fields
}
func NewTCPClient ¶
type TCPServer ¶
type TCPServer struct {
// contains filtered or unexported fields
}
func (*TCPServer) Serve ¶
func (ts *TCPServer) Serve(started chan<- *ListenResult)
type TestingT ¶
type TestingT interface { Error(args ...interface{}) Errorf(format string, args ...interface{}) Fail() FailNow() Failed() bool Fatal(args ...interface{}) Fatalf(format string, args ...interface{}) Log(args ...interface{}) Logf(format string, args ...interface{}) Name() string Skip(args ...interface{}) SkipNow() Skipf(format string, args ...interface{}) Skipped() bool Helper() }
type UnixServer ¶
type UnixServer struct {
// contains filtered or unexported fields
}
func NewUnixServer ¶
func NewUnixServer(t TestingT, bufferSize int) *UnixServer
func (*UnixServer) Serve ¶
func (us *UnixServer) Serve(started chan<- *ListenResult)
type UnixSocketClient ¶
type UnixSocketClient struct {
// contains filtered or unexported fields
}
func NewUnixClient ¶
func NewUnixClient(address string) (*UnixSocketClient, error)
func (*UnixSocketClient) Close ¶
func (c *UnixSocketClient) Close()
func (*UnixSocketClient) ReceiveMsg ¶
func (c *UnixSocketClient) ReceiveMsg(bufferSize int) ([]byte, error)
Click to show internal directories.
Click to hide internal directories.