Setup for multiplexing a MSG_* stream with the data stream. */
| 2464 | |
| 2465 | /* Setup for multiplexing a MSG_* stream with the data stream. */ |
| 2466 | void io_start_multiplex_in(int fd) |
| 2467 | { |
| 2468 | if (msgs2stderr == 1 && DEBUG_GTE(IO, 2)) |
| 2469 | rprintf(FINFO, "[%s] io_start_multiplex_in(%d)\n", who_am_i(), fd); |
| 2470 | |
| 2471 | iobuf.in_multiplexed = 1; /* See also IN_MULTIPLEXED */ |
| 2472 | io_start_buffering_in(fd); |
| 2473 | } |
| 2474 | |
| 2475 | int io_end_multiplex_in(int mode) |
| 2476 | { |
no test coverage detected