Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for indaddr1 (0.16 sec)

  1. src/cmd/cgo/godefs.go

    	fmt.Fprintf(&buf, "\n")
    
    	override := make(map[string]string)
    
    	// Allow source file to specify override mappings.
    	// For example, the socket data structures refer
    	// to in_addr and in_addr6 structs but we want to be
    	// able to treat them as byte arrays, so the godefs
    	// inputs in package syscall say
    	//
    	//	// +godefs map struct_in_addr [4]byte
    	//	// +godefs map struct_in_addr6 [16]byte
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type Msghdr struct {
    	Name       *byte
    	Iov        *Iovec
    	Control    *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    }
    
    type _Socklen uint32
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    	Multiaddr [4]byte /* in_addr */
    	Address   [4]byte /* in_addr */
    	Ifindex   int32
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier_test.go

    		}
    	}
    }
    
    func Test_syncService(t *testing.T) {
    	testCases := []struct {
    		oldVirtualServer  *utilipvs.VirtualServer
    		svcName           string
    		newVirtualServer  *utilipvs.VirtualServer
    		bindAddr          bool
    		alreadyBoundAddrs sets.Set[string]
    	}{
    		{
    			// case 0, old virtual server is same as new virtual server
    			oldVirtualServer: &utilipvs.VirtualServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    		}
    		// Set the source hash flag needed for the distribution method "mh"
    		if proxier.ipvsScheduler == "mh" {
    			serv.Flags |= utilipvs.FlagSourceHash
    		}
    		// We need to bind ClusterIP to dummy interface, so set `bindAddr` parameter to `true` in syncService()
    		if err := proxier.syncService(svcPortNameString, serv, true, alreadyBoundAddrs); err == nil {
    			activeIPVSServices.Insert(serv.String())
    			activeBindAddrs.Insert(serv.Address.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows.go

    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type sysLinger struct {
    	Onoff  uint16
    	Linger uint16
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    func GetsockoptInt(fd Handle, level, opt int) (int, error) {
    	optval := int32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type sysLinger struct {
    	Onoff  uint16
    	Linger uint16
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    func GetsockoptInt(fd Handle, level, opt int) (int, error) {
    	v := int32(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top