Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SendmsgBuffers (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    		if err != nil {
    			return 0, err
    		}
    	}
    	return sendmsgN(fd, iov[:], oob, ptr, salen, flags)
    }
    
    // SendmsgBuffers sends a message on a socket to an address using the sendmsg
    // system call. This function is equivalent to SendmsgN, but the non-control
    // data is gathered from buffers.
    func SendmsgBuffers(fd int, buffers [][]byte, oob []byte, to Sockaddr, flags int) (n int, err error) {
    	iov := make([]Iovec, len(buffers))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top