Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for unixgram (0.13 sec)

  1. src/net/listen_test.go

    			}
    			ln := newLocalListener(t, network, &ListenConfig{Control: controlOnConnSetup})
    			ln.Close()
    		}
    	})
    	t.Run("PacketListen", func(t *testing.T) {
    		for _, network := range []string{"udp", "udp4", "udp6", "unixgram"} {
    			if !testableNetwork(network) {
    				continue
    			}
    			c := newLocalPacketListener(t, network, &ListenConfig{Control: controlOnConnSetup})
    			c.Close()
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. src/internal/poll/fd_windows.go

    		fd.kind = kindFile
    	case "console":
    		fd.kind = kindConsole
    	case "pipe":
    		fd.kind = kindPipe
    	case "tcp", "tcp4", "tcp6",
    		"udp", "udp4", "udp6",
    		"ip", "ip4", "ip6",
    		"unix", "unixgram", "unixpacket":
    		fd.kind = kindNet
    	default:
    		return "", errors.New("internal error: unknown network type " + net)
    	}
    	fd.isFile = fd.kind != kindNet
    
    	var err error
    	if pollable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 16:50:42 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top