Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestUnixConnLocalWindows (0.42 sec)

  1. src/net/unixsock_windows_test.go

    // license that can be found in the LICENSE file.
    
    //go:build windows
    
    package net
    
    import (
    	"internal/syscall/windows"
    	"os"
    	"reflect"
    	"testing"
    )
    
    func TestUnixConnLocalWindows(t *testing.T) {
    	if !windows.SupportUnixSocket() {
    		t.Skip("unix test")
    	}
    	handler := func(ls *localServer, ln Listener) {}
    	for _, laddr := range []string{"", testUnixAddr(t)} {
    		laddr := laddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:24:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top