Send data through the sockets */
| 295 | |
| 296 | /* Send data through the sockets */ |
| 297 | static void send_data(struct fds *s) |
| 298 | { |
| 299 | int written_bytes; |
| 300 | /* Send data sing the sockstruct->send */ |
| 301 | written_bytes = write(s->tx, MSG, strlen(MSG)); |
| 302 | assert(written_bytes == strlen(MSG)); |
| 303 | } |
| 304 | |
| 305 | int main(int argc, char *argv[]) |
| 306 | { |