From: wessels <> Date: Fri, 7 Feb 1997 03:20:47 +0000 (+0000) Subject: parse multicast peer type X-Git-Tag: SQUID_3_0_PRE1~5125 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ce096eb76854455e4e445950c3ff526d54c797e1;p=thirdparty%2Fsquid.git parse multicast peer type --- diff --git a/src/neighbors.cc b/src/neighbors.cc index 8ba07d34d3..0701c78ca4 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -1,5 +1,5 @@ /* - * $Id: neighbors.cc,v 1.110 1997/02/06 18:44:25 wessels Exp $ + * $Id: neighbors.cc,v 1.111 1997/02/06 20:20:47 wessels Exp $ * * DEBUG: section 15 Neighbor Routines * AUTHOR: Harvest Derived @@ -924,6 +924,8 @@ parseNeighborType(const char *s) return PEER_SIBLING; if (!strcasecmp(s, "sibling")) return PEER_SIBLING; + if (!strcasecmp(s, "multicast")) + return PEER_MULTICAST; debug(15, 0, "WARNING: Unknown neighbor type: %s\n", s); return PEER_SIBLING; }