(data)
| 344 | raise Fatal('hostwatch process died') |
| 345 | |
| 346 | def got_host_req(data): |
| 347 | if not hw.pid: |
| 348 | (hw.pid, hw.sock) = start_hostwatch( |
| 349 | data.decode("ASCII").strip().split(), auto_hosts) |
| 350 | handlers.append(Handler(socks=[hw.sock], |
| 351 | callback=hostwatch_ready)) |
| 352 | mux.got_host_req = got_host_req |
| 353 | |
| 354 | def new_channel(channel, data): |
nothing calls this directly
no test coverage detected