Versions in this module Expand all Collapse all v0 v0.2.1 Jul 6, 2015 Changes in this version + const CR + const LF + type Conn struct + func Dial(network, addr string) (*Conn, error) + func DialTimeout(network, addr string, timeout time.Duration) (*Conn, error) + func NewConn(conn net.Conn) (*Conn, error) + func (c *Conn) Read(buf []byte) (int, error) + func (c *Conn) ReadByte() (b byte, err error) + func (c *Conn) ReadBytes(delim byte) ([]byte, error) + func (c *Conn) ReadRune() (r rune, size int, err error) + func (c *Conn) ReadString(delim byte) (string, error) + func (c *Conn) ReadUntil(delims ...string) ([]byte, error) + func (c *Conn) ReadUntilIndex(delims ...string) ([]byte, int, error) + func (c *Conn) SetEcho(echo bool) error + func (c *Conn) SetUnixWriteMode(uwm bool) + func (c *Conn) SkipBytes(delim byte) error + func (c *Conn) SkipUntil(delims ...string) error + func (c *Conn) SkipUntilIndex(delims ...string) (int, error) + func (c *Conn) Write(buf []byte) (int, error)