type net.IPConn
20 uses
net (current package)
dial.go#L631: func (d *Dialer) DialIP(ctx context.Context, network string, laddr netip.Addr, raddr netip.Addr) (*IPConn, error) {
iprawsock.go#L110: type IPConn struct {
iprawsock.go#L116: func (c *IPConn) SyscallConn() (syscall.RawConn, error) {
iprawsock.go#L124: func (c *IPConn) ReadFromIP(b []byte) (int, *IPAddr, error) {
iprawsock.go#L136: func (c *IPConn) ReadFrom(b []byte) (int, Addr, error) {
iprawsock.go#L157: func (c *IPConn) ReadMsgIP(b, oob []byte) (n, oobn, flags int, addr *IPAddr, err error) {
iprawsock.go#L169: func (c *IPConn) WriteToIP(b []byte, addr *IPAddr) (int, error) {
iprawsock.go#L181: func (c *IPConn) WriteTo(b []byte, addr Addr) (int, error) {
iprawsock.go#L202: func (c *IPConn) WriteMsgIP(b, oob []byte, addr *IPAddr) (n, oobn int, err error) {
iprawsock.go#L213: func newIPConn(fd *netFD) *IPConn { return &IPConn{conn{fd}} }
iprawsock.go#L222: func DialIP(network string, laddr, raddr *IPAddr) (*IPConn, error) {
iprawsock.go#L226: func dialIP(ctx context.Context, dialer *Dialer, network string, laddr, raddr *IPAddr) (*IPConn, error) {
iprawsock.go#L248: func ListenIP(network string, laddr *IPAddr) (*IPConn, error) {
iprawsock_posix.go#L45: func (c *IPConn) readFrom(b []byte) (int, *IPAddr, error) {
iprawsock_posix.go#L75: func (c *IPConn) readMsg(b, oob []byte) (n, oobn, flags int, addr *IPAddr, err error) {
iprawsock_posix.go#L87: func (c *IPConn) writeTo(b []byte, addr *IPAddr) (int, error) {
iprawsock_posix.go#L101: func (c *IPConn) writeMsg(b, oob []byte, addr *IPAddr) (n, oobn int, err error) {
iprawsock_posix.go#L115: func (sd *sysDialer) dialIP(ctx context.Context, laddr, raddr *IPAddr) (*IPConn, error) {
iprawsock_posix.go#L138: func (sl *sysListener) listenIP(ctx context.Context, laddr *IPAddr) (*IPConn, error) {
 |
The pages are generated with Golds v0.8.4. (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. |