您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

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