No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

nosigpipe.go 258 B

12345678910
  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. }