Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RecvfromInet4 (0.19 sec)

  1. src/internal/syscall/unix/net_wasip1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build wasip1
    
    package unix
    
    import (
    	"syscall"
    	_ "unsafe"
    )
    
    func RecvfromInet4(fd int, p []byte, flags int, from *syscall.SockaddrInet4) (int, error) {
    	return 0, syscall.ENOSYS
    }
    
    func RecvfromInet6(fd int, p []byte, flags int, from *syscall.SockaddrInet6) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:17 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top