* If we buffered things up above (we don't, but we should), * we'd flush it here */
| 91 | * we'd flush it here |
| 92 | */ |
| 93 | void packet_flush(int fd) |
| 94 | { |
| 95 | packet_trace("0000", 4, 1); |
| 96 | if (write_in_full(fd, "0000", 4) < 0) |
| 97 | die_errno(_("unable to write flush packet")); |
| 98 | } |
| 99 | |
| 100 | void packet_delim(int fd) |
| 101 | { |