Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

11 righe
258 B

  1. //+build !darwin !go1.9
  2. package nosigpipe
  3. import "net"
  4. // IgnoreSIGPIPE prevents SIGPIPE from being raised on TCP sockets when remote hangs up
  5. // See: https://github.com/golang/go/issues/17393. Do nothing for non Darwin
  6. func IgnoreSIGPIPE(c net.Conn) {
  7. }