type net.TCPConn
24 uses
net (current package)
dial.go#L422: testHookDialTCP func(ctx context.Context, net string, laddr, raddr *TCPAddr) (*TCPConn, error)
hook.go#L14: 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) {
splice_linux.go#L28: if tc, ok := r.(*TCPConn); ok {
tcpsock.go#L112: type TCPConn struct {
tcpsock.go#L118: func (c *TCPConn) SyscallConn() (syscall.RawConn, error) {
tcpsock.go#L126: func (c *TCPConn) ReadFrom(r io.Reader) (int64, error) {
tcpsock.go#L139: func (c *TCPConn) CloseRead() error {
tcpsock.go#L151: func (c *TCPConn) CloseWrite() error {
tcpsock.go#L175: func (c *TCPConn) SetLinger(sec int) error {
tcpsock.go#L187: func (c *TCPConn) SetKeepAlive(keepalive bool) error {
tcpsock.go#L198: func (c *TCPConn) SetKeepAlivePeriod(d time.Duration) error {
tcpsock.go#L212: func (c *TCPConn) SetNoDelay(noDelay bool) error {
tcpsock.go#L231: func (c *TCPConn) MultipathTCP() (bool, error) {
tcpsock.go#L238: func newTCPConn(fd *netFD, keepAlive time.Duration, keepAliveHook func(time.Duration)) *TCPConn {
tcpsock.go#L250: return &TCPConn{conn{fd}}
tcpsock.go#L260: func DialTCP(network string, laddr, raddr *TCPAddr) (*TCPConn, error) {
tcpsock.go#L298: func (l *TCPListener) AcceptTCP() (*TCPConn, error) {
tcpsock_posix.go#L47: func (c *TCPConn) readFrom(r io.Reader) (int64, error) {
tcpsock_posix.go#L57: func (sd *sysDialer) dialTCP(ctx context.Context, laddr, raddr *TCPAddr) (*TCPConn, error) {
tcpsock_posix.go#L67: func (sd *sysDialer) doDialTCP(ctx context.Context, laddr, raddr *TCPAddr) (*TCPConn, error) {
tcpsock_posix.go#L71: func (sd *sysDialer) doDialTCPProto(ctx context.Context, laddr, raddr *TCPAddr, proto int) (*TCPConn, error) {
tcpsock_posix.go#L151: func (ln *TCPListener) accept() (*TCPConn, error) {
net/http
server.go#L1762: var _ closeWriter = (*net.TCPConn)(nil)
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |