(msg string)
| 36 | } |
| 37 | |
| 38 | func errResponse(msg string) *protocol.IpcResponse { |
| 39 | return &protocol.IpcResponse{Ok: false, Error: msg} |
| 40 | } |
| 41 | |
| 42 | func readRequest(rw *bufio.ReadWriter) (*protocol.IpcRequest, error) { |
| 43 | line, err := rw.ReadBytes('\n') |
no outgoing calls
no test coverage detected