| 74 | } |
| 75 | |
| 76 | static ssize_t send_data(struct fds *s, char *str) |
| 77 | { |
| 78 | size_t written_bytes; |
| 79 | |
| 80 | written_bytes = write(s->tx, str, strlen(str)); |
| 81 | assert(written_bytes == strlen(MSG)); |
| 82 | |
| 83 | return written_bytes; |
| 84 | } |
| 85 | |
| 86 | static int run_test(bool stream) |
| 87 | { |