()
| 54 | var _ P = &UnixSockPipe{} |
| 55 | |
| 56 | func (usp *UnixSockPipe) myID() string { |
| 57 | return fmt.Sprintf("%d-%p", os.Getpid(), usp) |
| 58 | } |
| 59 | |
| 60 | func (usp *UnixSockPipe) readUpdates(conn net.Conn, updCh chan<- mess.Update) { |
| 61 | scnr := bufio.NewScanner(conn) |
no outgoing calls
no test coverage detected