Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

11 linhas
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. }