/*
- * $Id: icmp.cc,v 1.78 2002/10/21 06:43:07 adrian Exp $
+ * $Id: icmp.cc,v 1.79 2002/10/21 16:12:47 hno Exp $
*
* DEBUG: section 37 ICMP Routines
* AUTHOR: Duane Wessels
return;
debug(37, 2) ("icmpSend: to %s, opcode %d, len %d\n",
inet_ntoa(pkt->to), (int) pkt->opcode, pkt->psize);
- x = comm_send(icmp_sock, (char *) pkt, len, 0);
+ x = comm_udp_send(icmp_sock, (char *) pkt, len, 0);
if (x < 0) {
debug(50, 1) ("icmpSend: send: %s\n", xstrerror());
if (errno == ECONNREFUSED || errno == EPIPE) {
/*
- * $Id: wccp.cc,v 1.28 2002/10/21 06:43:08 adrian Exp $
+ * $Id: wccp.cc,v 1.29 2002/10/21 16:12:47 hno Exp $
*
* DEBUG: section 80 WCCP Support
* AUTHOR: Glenn Chisholm
debug(80, 6) ("wccpHereIam: Called\n");
wccp_here_i_am.id = wccp_i_see_you.id;
- comm_send(theOutWccpConnection,
+ comm_udp_send(theOutWccpConnection,
&wccp_here_i_am,
sizeof(wccp_here_i_am),
0);
wccp_assign_bucket->id = wccp_i_see_you.id;
wccp_assign_bucket->number = wccp_i_see_you.number;
- comm_send(theOutWccpConnection,
+ comm_udp_send(theOutWccpConnection,
buf,
wab_len + WCCP_BUCKETS + cache_len,
0);