Lines Matching defs:message
62 char message[MAX_MSG_LEN];
221 * Description: This function grabs the udp message from the queue and outputs to stdio
233 memset(message, 0, MAX_MSG_LEN);
235 /* receive message */
239 recvfrom(udpSocketHandle, message, MAX_MSG_LEN, 0,
247 /* print message */
250 ntohs(udpClientAddr.sin_port), message);
261 * Description: This function grabs the tcp message from the queue and outputs to stdio
284 memset(message, 0x0, MAX_MSG_LEN);
287 while (tcp_receive_buffer(newTcpSocketHandle, message) != ERROR) {
291 ntohs(tcpClientAddr.sin_port), message);
294 memset(message, 0x0, MAX_MSG_LEN);
307 * Description: This function grabs the message from the tcp queue and
385 * Description: This function grabs the multiCast message from the queue and outputs to stdio
399 recvfrom(multiSocketHandle, message, MAX_MSG_LEN, 0,
410 ntohs(multiClientAddr.sin_port), hostname, message);