Lines Matching defs:message
82 char *message = "hello, world!\n";
132 /* Send the first message from all the clients to the server. This
153 outmessage.msg_iov->iov_base = message;
154 outmessage.msg_iov->iov_len = strlen(message) + 1;
157 strlen(message)+1);
168 /* Get the communication up message on all client sockets. */
181 /* Get the communication up message and the data message on the
195 test_check_msg_data(&inmessage, error, strlen(message) + 1,
228 /* Send a message from all the client sockets to the server socket. */
230 test_sendmsg(clt_sk[i], &outmessage, 0, strlen(message)+1);
236 test_check_msg_data(&inmessage, error, strlen(message) + 1,
242 /* Send a message from all the peeled off server sockets to the client
248 test_sendmsg(peeloff_sk[i], &outmessage, 0, strlen(message)+1);
257 test_check_msg_data(&inmessage, error, strlen(message) + 1,
265 * association by trying to send a message to a client that is not
267 * The message is sent to the client that is associated with the
272 test_sendmsg(peeloff_sk[0], &outmessage, 0, strlen(message)+1);
276 test_check_msg_data(&inmessage, error, strlen(message) + 1,