OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libgo/] [go/] [net/] [sockopt_windows.go] - Blame information for rev 747

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 747 jeremybenn
// Copyright 2011 The Go Authors.  All rights reserved.
2
// Use of this source code is governed by a BSD-style
3
// license that can be found in the LICENSE file.
4
 
5
// Socket options for Windows
6
 
7
package net
8
 
9
import (
10
        "os"
11
        "syscall"
12
)
13
 
14
func setDefaultSockopts(s syscall.Handle, f, t int) error {
15
        switch f {
16
        case syscall.AF_INET6:
17
                // Allow both IP versions even if the OS default is otherwise.
18
                // Note that some operating systems never admit this option.
19
                syscall.SetsockoptInt(s, syscall.IPPROTO_IPV6, syscall.IPV6_V6ONLY, 0)
20
        }
21
 
22
        // Windows will reuse recently-used addresses by default.
23
        // SO_REUSEADDR should not be used here, as it allows
24
        // a socket to forcibly bind to a port in use by another socket.
25
        // This could lead to a non-deterministic behavior, where
26
        // connection requests over the port cannot be guaranteed
27
        // to be handled by the correct socket.
28
 
29
        // Allow broadcast.
30
        syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_BROADCAST, 1)
31
        return nil
32
}
33
 
34
func setDefaultMulticastSockopts(s syscall.Handle) error {
35
        // Allow multicast UDP and raw IP datagram sockets to listen
36
        // concurrently across multiple listeners.
37
        err := syscall.SetsockoptInt(s, syscall.SOL_SOCKET, syscall.SO_REUSEADDR, 1)
38
        if err != nil {
39
                return os.NewSyscallError("setsockopt", err)
40
        }
41
        return nil
42
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.