Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SetLsfPromisc (0.32 sec)

  1. src/syscall/lsf_linux.go

    	if e != nil {
    		Close(s)
    		return 0, e
    	}
    	return s, nil
    }
    
    type iflags struct {
    	name  [IFNAMSIZ]byte
    	flags uint16
    }
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func SetLsfPromisc(name string, m bool) error {
    	s, e := Socket(AF_INET, SOCK_DGRAM|SOCK_CLOEXEC, 0)
    	if e != nil {
    		return e
    	}
    	defer Close(s)
    	var ifl iflags
    	copy(ifl.name[:], []byte(name))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:27:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (linux-amd64-cgo), func SetLsfPromisc //deprecated
    pkg syscall (linux-amd64-cgo), func StringSlicePtr //deprecated
    pkg syscall (linux-arm), func AttachLsf //deprecated
    pkg syscall (linux-arm), func DetachLsf //deprecated
    pkg syscall (linux-arm), func LsfJump //deprecated
    pkg syscall (linux-arm), func LsfSocket //deprecated
    pkg syscall (linux-arm), func LsfStmt //deprecated
    pkg syscall (linux-arm), func SetLsfPromisc //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (linux-386), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
    pkg syscall (linux-386), func Sendto(int, []uint8, int, Sockaddr) error
    pkg syscall (linux-386), func SetLsfPromisc(string, bool) error
    pkg syscall (linux-386), func SetNonblock(int, bool) error
    pkg syscall (linux-386), func Setdomainname([]uint8) error
    pkg syscall (linux-386), func Setfsgid(int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SetFileCompletionNotificationModes", Func, 2},
    		{"SetFilePointer", Func, 0},
    		{"SetFileTime", Func, 0},
    		{"SetHandleInformation", Func, 0},
    		{"SetKevent", Func, 0},
    		{"SetLsfPromisc", Func, 0},
    		{"SetNonblock", Func, 0},
    		{"Setdomainname", Func, 0},
    		{"Setegid", Func, 0},
    		{"Setenv", Func, 0},
    		{"Seteuid", Func, 0},
    		{"Setfsgid", Func, 0},
    		{"Setfsuid", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), func Sendmsg(int, []uint8, []uint8, Sockaddr, int) error
    pkg syscall (linux-arm-cgo), func Sendto(int, []uint8, int, Sockaddr) error
    pkg syscall (linux-arm-cgo), func SetLsfPromisc(string, bool) error
    pkg syscall (linux-arm-cgo), func SetNonblock(int, bool) error
    pkg syscall (linux-arm-cgo), func Setdomainname([]uint8) error
    pkg syscall (linux-arm-cgo), func Setfsgid(int) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top