===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
cubemap-1.4.3/NEWS-130-  * Multicast support, both for sending and receiving;
cubemap-1.4.3/NEWS:131:    both IPv4 and IPv6, both ASM and SSM.
cubemap-1.4.3/NEWS-132-
##############################################
cubemap-1.4.3/README-18- - Multicast support, both for sending and receiving (supports only protocols
cubemap-1.4.3/README:19:   that can go over UDP, e.g. MPEG-TS). Supports both ASM and SSM.
cubemap-1.4.3/README-20- - TLS output support, through the TLSe library (requires libtomcrypt)
##############################################
cubemap-1.4.3/acceptor.cpp-84-
cubemap-1.4.3/acceptor.cpp:85:	if (!proto.addr().empty()) {
cubemap-1.4.3/acceptor.cpp:86:		int ret = inet_pton(AF_INET6, proto.addr().c_str(), &sin6.sin6_addr);
cubemap-1.4.3/acceptor.cpp-87-		assert(ret == 1);
##############################################
cubemap-1.4.3/acceptor.cpp-96-	: server_sock(server_sock),
cubemap-1.4.3/acceptor.cpp:97:	  addr(addr),
cubemap-1.4.3/acceptor.cpp-98-	  certificate_chain(certificate_chain),
##############################################
cubemap-1.4.3/acceptor.cpp-104-	: server_sock(serialized.server_sock()),
cubemap-1.4.3/acceptor.cpp:105:	  addr(extract_address_from_acceptor_proto(serialized)),
cubemap-1.4.3/acceptor.cpp-106-	  certificate_chain(serialized.certificate_chain()),
##############################################
cubemap-1.4.3/acceptor.cpp-117-	serialized.set_server_sock(server_sock);
cubemap-1.4.3/acceptor.cpp:118:	serialized.set_addr(buf);
cubemap-1.4.3/acceptor.cpp-119-	serialized.set_port(ntohs(addr.sin6_port));
##############################################
cubemap-1.4.3/client.cpp-53-	: sock(serialized.sock()),
cubemap-1.4.3/client.cpp:54:	  remote_addr(serialized.remote_addr()),
cubemap-1.4.3/client.cpp-55-	  referer(serialized.referer()),
##############################################
cubemap-1.4.3/client.cpp-119-	serialized.set_sock(sock);
cubemap-1.4.3/client.cpp:120:	serialized.set_remote_addr(remote_addr);
cubemap-1.4.3/client.cpp-121-	serialized.set_referer(referer);
##############################################
cubemap-1.4.3/cubemap.1-36-Multicast support, both for sending and receiving (supports only protocols
cubemap-1.4.3/cubemap.1:37:that can go over UDP, e.g. MPEG-TS). Supports both ASM and SSM.
cubemap-1.4.3/cubemap.1-38-.IP \[bu]
##############################################
cubemap-1.4.3/cubemap.config.sample-106-# IPv6 SSM (Single Source Multicast) input. Subscribes to the given group and
cubemap-1.4.3/cubemap.config.sample:107:# waits for packets from the given sender only. SSM is nicer than ASM in that
cubemap-1.4.3/cubemap.config.sample-108-# it does not require a Rendezvous Point (RP) and other complexity, but is
##############################################
cubemap-1.4.3/m4/pkg.m4-75-    PKG_CHECK_EXISTS([$3],
cubemap-1.4.3/m4/pkg.m4:76:                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
cubemap-1.4.3/m4/pkg.m4-77-		      test "x$?" != "x0" && pkg_failed=yes ],
##############################################
cubemap-1.4.3/m4/pkg.m4-124-        if test $_pkg_short_errors_supported = yes; then
cubemap-1.4.3/m4/pkg.m4:125:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
cubemap-1.4.3/m4/pkg.m4-126-        else 
cubemap-1.4.3/m4/pkg.m4:127:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
cubemap-1.4.3/m4/pkg.m4-128-        fi
##############################################
cubemap-1.4.3/server.cpp-223-		const HLSZombie &zombie = key_and_zombie.second;
cubemap-1.4.3/server.cpp:224:		proto->set_remote_addr(zombie.remote_addr);
cubemap-1.4.3/server.cpp-225-		proto->set_url(zombie.url);
##############################################
cubemap-1.4.3/server.cpp-389-	HLSZombie zombie;
cubemap-1.4.3/server.cpp:390:	zombie.remote_addr = zombie_proto.remote_addr();
cubemap-1.4.3/server.cpp-391-	zombie.url = zombie_proto.url();
##############################################
cubemap-1.4.3/udpinput.cpp-66-
cubemap-1.4.3/udpinput.cpp:67:	// Join the given multicast group (ASM or SSM).
cubemap-1.4.3/udpinput.cpp-68-	// TODO: Also support sources apart from multicast groups,