===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
cdpr-2.4/cdprs.c-153-	cdprs_addr.sin_port = htons(port);
cdpr-2.4/cdprs.c:154:	cdprs_addr.sin_addr.s_addr = inet_addr(ip);
cdpr-2.4/cdprs.c-155-	memset(&(cdprs_addr.sin_zero), '\0', 8);
##############################################
cdpr-2.4/conffile.c-43-	// Return true if we can convert cp into an ip address, false if not.
cdpr-2.4/conffile.c:44:	// This test may be too simplistic as inet_addr() accepts "1.2.3.4",
cdpr-2.4/conffile.c-45-	// "1.2.3", "1.2", and "1" as valid ip addresses.
##############################################
cdpr-2.4/conffile.c-48-	{
cdpr-2.4/conffile.c:49:		return inet_addr (cp) != INADDR_NONE;
cdpr-2.4/conffile.c-50-	}