type net.TCPConn
31 uses
net (current package)
dial.go#L442: testHookDialTCP func(ctx context.Context, net string, laddr, raddr *TCPAddr) (*TCPConn, error)
hook.go#L13: testHookDialTCP func(ctx context.Context, net string, laddr, raddr *TCPAddr) (*TCPConn, error)
mptcpsock_linux.go#L54: func (sd *sysDialer) dialMPTCP(ctx context.Context, laddr, raddr *TCPAddr) (*TCPConn, error) {
net.go#L755: *TCPConn
net.go#L760: func genericReadFrom(c *TCPConn, r io.Reader) (n int64, err error) {
net.go#L780: *TCPConn
net.go#L784: func genericWriteTo(c *TCPConn, w io.Writer) (n int64, err error) {
splice_linux.go#L31: case *TCPConn:
tcpsock.go#L112: type TCPConn struct {
tcpsock.go#L153: func (c *TCPConn) SyscallConn() (syscall.RawConn, error) {
tcpsock.go#L161: func (c *TCPConn) ReadFrom(r io.Reader) (int64, error) {
tcpsock.go#L173: func (c *TCPConn) WriteTo(w io.Writer) (int64, error) {
tcpsock.go#L186: func (c *TCPConn) CloseRead() error {
tcpsock.go#L198: func (c *TCPConn) CloseWrite() error {
tcpsock.go#L222: func (c *TCPConn) SetLinger(sec int) error {
tcpsock.go#L234: func (c *TCPConn) SetKeepAlive(keepalive bool) error {
tcpsock.go#L249: func (c *TCPConn) SetKeepAlivePeriod(d time.Duration) error {
tcpsock.go#L263: func (c *TCPConn) SetNoDelay(noDelay bool) error {
tcpsock.go#L282: func (c *TCPConn) MultipathTCP() (bool, error) {
tcpsock.go#L289: func newTCPConn(fd *netFD, keepAliveIdle time.Duration, keepAliveCfg KeepAliveConfig, preKeepAliveHook func(*netFD), keepAliveHook func(KeepAliveConfig)) *TCPConn {
tcpsock.go#L297: c := &TCPConn{conn{fd}}
tcpsock.go#L317: func DialTCP(network string, laddr, raddr *TCPAddr) (*TCPConn, error) {
tcpsock.go#L355: func (l *TCPListener) AcceptTCP() (*TCPConn, error) {
tcpsock_posix.go#L47: func (c *TCPConn) readFrom(r io.Reader) (int64, error) {
tcpsock_posix.go#L57: func (c *TCPConn) writeTo(w io.Writer) (int64, error) {
tcpsock_posix.go#L64: func (sd *sysDialer) dialTCP(ctx context.Context, laddr, raddr *TCPAddr) (*TCPConn, error) {
tcpsock_posix.go#L74: func (sd *sysDialer) doDialTCP(ctx context.Context, laddr, raddr *TCPAddr) (*TCPConn, error) {
tcpsock_posix.go#L78: func (sd *sysDialer) doDialTCPProto(ctx context.Context, laddr, raddr *TCPAddr, proto int) (*TCPConn, error) {
tcpsock_posix.go#L158: func (ln *TCPListener) accept() (*TCPConn, error) {
tcpsock_unix.go#L12: func (c *TCPConn) SetKeepAliveConfig(config KeepAliveConfig) error {
net/http
server.go#L1820: var _ closeWriter = (*net.TCPConn)(nil)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |