/*
- * $Id: wccp.cc,v 1.12 1999/12/30 17:37:05 wessels Exp $
+ * $Id: wccp.cc,v 1.13 2000/01/14 07:13:16 wessels Exp $
*
* DEBUG: section 80 WCCP Support
* AUTHOR: Glenn Chisholm
{
struct sockaddr_in from;
socklen_t from_len;
- int len;
+ size_t len;
debug(80, 6) ("wccpHandleUdp: Called.\n");
Counter.syscalls.sock.recvfroms++;
len = recvfrom(sock,
- &wccp_i_see_you,
+ (void *) &wccp_i_see_you,
WCCP_RESPONSE_SIZE,
0,
(struct sockaddr *) &from,
wccp_here_i_am.id = wccp_i_see_you.id;
send(theOutWccpConnection,
- &wccp_here_i_am,
+ (void *) &wccp_here_i_am,
sizeof(wccp_here_i_am),
0);