]> git.ipfire.org Git - thirdparty/squid.git/commit
Fix Squid <-> pinger communication.
authorwessels <>
Fri, 20 Apr 2007 03:25:38 +0000 (03:25 +0000)
committerwessels <>
Fri, 20 Apr 2007 03:25:38 +0000 (03:25 +0000)
commitd1535fc3978b21e010e1a3dee7a470200cf41a89
treeb8533971640e84eaaaba71843e07afc63ccf1e2e
parentf72fb56b62bae0114ddf6369faf2e9e16faeee1c
Fix Squid <-> pinger communication.

Somebody thought it would be nice to use a socketpair(), rather than
a UDP socket, for squid-pinger IPC.  But socketpair() messages cannot
be larger than 4096 bytes.  Pinger is sending ~8KB messages back to
Squid, so we must use UDP (or something that supports large messages).
src/icmp.cc