type net.IPConn
18 uses
net (current package)
iprawsock.go#L99: type IPConn struct {
iprawsock.go#L105: func (c *IPConn) SyscallConn() (syscall.RawConn, error) {
iprawsock.go#L113: func (c *IPConn) ReadFromIP(b []byte) (int, *IPAddr, error) {
iprawsock.go#L125: func (c *IPConn) ReadFrom(b []byte) (int, Addr, error) {
iprawsock.go#L146: func (c *IPConn) ReadMsgIP(b, oob []byte) (n, oobn, flags int, addr *IPAddr, err error) {
iprawsock.go#L158: func (c *IPConn) WriteToIP(b []byte, addr *IPAddr) (int, error) {
iprawsock.go#L170: func (c *IPConn) WriteTo(b []byte, addr Addr) (int, error) {
iprawsock.go#L191: func (c *IPConn) WriteMsgIP(b, oob []byte, addr *IPAddr) (n, oobn int, err error) {
iprawsock.go#L202: func newIPConn(fd *netFD) *IPConn { return &IPConn{conn{fd}} }
iprawsock.go#L211: func DialIP(network string, laddr, raddr *IPAddr) (*IPConn, error) {
iprawsock.go#L230: 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.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. |