Lines Matching defs:message
80 char *message = "hello, world!\n";
182 /* Send the first message. This will create the association. */
201 outmessage.msg_iov->iov_base = message;
202 outmessage.msg_iov->iov_len = strlen(message) + 1;
203 test_sendmsg(udp_clt_sk, &outmessage, 0, strlen(message)+1);
214 /* Get the communication up message on udp_svr_sk. */
223 /* Get the communication up message on udp_clt_sk. */
232 /* Get the first message which was sent. */
235 test_check_msg_data(&inmessage, error, strlen(message) + 1,
328 /* Send a message. This will create the association. */
329 outmessage.msg_iov->iov_base = message;
330 outmessage.msg_iov->iov_len = strlen(message) + 1;
331 test_sendmsg(udp_clt_sk, &outmessage, 0, strlen(message)+1);
333 /* Get the message which was sent. */
336 test_check_msg_data(&inmessage, error, strlen(message) + 1,
379 /* Send the first message. This will create the association. */
398 outmessage.msg_iov->iov_base = message;
399 outmessage.msg_iov->iov_len = strlen(message) + 1;
400 test_sendmsg(udp_clt_sk, &outmessage, 0, strlen(message)+1);
402 /* Get the communication up message on udp_clt_sk. */