Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newLocalListenerMPTCP (0.38 sec)

  1. src/net/mptcpsock_linux_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"syscall"
    	"testing"
    )
    
    func newLocalListenerMPTCP(t *testing.T, envVar bool) Listener {
    	lc := &ListenConfig{}
    
    	if envVar {
    		if !lc.MultipathTCP() {
    			t.Fatal("MultipathTCP Listen is not on despite GODEBUG=multipathtcp=1")
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 00:36:57 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top