===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-555-{
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:556:    unsigned long addr = inet_addr(host);
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-557-    struct hostent phe2;
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-622-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:623:const char* GeoIP_country_code_by_addr(GeoIP* gi, const char* addr)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-624-{
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-625-    int country_id;
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:626:    country_id = GeoIP_id_by_addr(gi, addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-627-    return (country_id > 0) ? GeoIP_country_code[country_id] : NULL;
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-629-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:630:const char* GeoIP_country_code3_by_addr(GeoIP* gi, const char* addr)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-631-{
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-632-    int country_id;
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:633:    country_id = GeoIP_id_by_addr(gi, addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-634-    return (country_id > 0) ? GeoIP_country_code3[country_id] : NULL;
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-637-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:638:const char* GeoIP_country_name_by_addr(GeoIP* gi, const char* addr)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-639-{
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-640-    int country_id;
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:641:    country_id = GeoIP_id_by_addr(gi, addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-642-    return (country_id > 0) ? GeoIP_country_name[country_id] : NULL;
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-666-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:667:int GeoIP_country_id_by_addr(GeoIP* gi, const char* addr)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-668-{
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:669:    return GeoIP_id_by_addr(gi, addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-670-}
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-676-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:677:int GeoIP_id_by_addr(GeoIP* gi, const char* addr)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-678-{
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-773-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:774:void GeoIP_assign_region_by_inetaddr(GeoIP* gi, unsigned long inetaddr, GeoIPRegion* region)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-775-{
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-840-    {
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:841:        GeoIP_assign_region_by_inetaddr(gi, htonl(ipnum), region);
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-842-    }
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-845-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:846:GeoIPRegion* GeoIP_region_by_addr(GeoIP* gi, const char* addr)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-847-{
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-940-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:941:char* GeoIP_name_by_addr(GeoIP* gi, const char* addr)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-942-{
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-968-
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:969:char* GeoIP_org_by_addr(GeoIP* gi, const char* addr)
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-970-{
ktorrent-5.2.0/plugins/infowidget/GeoIP.c:971:    return GeoIP_name_by_addr(gi, addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.c-972-}
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-120-    GEOIP_API void GeoIP_delete(GeoIP* gi);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:121:    GEOIP_API const char* GeoIP_country_code_by_addr(GeoIP* gi, const char* addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-122-    GEOIP_API const char* GeoIP_country_code_by_name(GeoIP* gi, const char* host);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:123:    GEOIP_API const char* GeoIP_country_code3_by_addr(GeoIP* gi, const char* addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-124-    GEOIP_API const char* GeoIP_country_code3_by_name(GeoIP* gi, const char* host);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:125:    GEOIP_API const char* GeoIP_country_name_by_addr(GeoIP* gi, const char* addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-126-    GEOIP_API const char* GeoIP_country_name_by_name(GeoIP* gi, const char* host);
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-131-    /* Deprecated - for backwards compatibility only */
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:132:    GEOIP_API int GeoIP_country_id_by_addr(GeoIP* gi, const char* addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-133-    GEOIP_API int GeoIP_country_id_by_name(GeoIP* gi, const char* host);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:134:    GEOIP_API char* GeoIP_org_by_addr(GeoIP* gi, const char* addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-135-    GEOIP_API char* GeoIP_org_by_name(GeoIP* gi, const char* host);
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-137-
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:138:    GEOIP_API int GeoIP_id_by_addr(GeoIP* gi, const char* addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-139-    GEOIP_API int GeoIP_id_by_name(GeoIP* gi, const char* host);
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-141-
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:142:    GEOIP_API GeoIPRegion* GeoIP_region_by_addr(GeoIP* gi, const char* addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-143-    GEOIP_API GeoIPRegion* GeoIP_region_by_name(GeoIP* gi, const char* host);
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-148-
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:149:    GEOIP_API void GeoIP_assign_region_by_inetaddr(GeoIP* gi, unsigned long inetaddr, GeoIPRegion* gir);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-150-
##############################################
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-152-    GEOIP_API char* GeoIP_name_by_ipnum(GeoIP* gi, unsigned long ipnum);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h:153:    GEOIP_API char* GeoIP_name_by_addr(GeoIP* gi, const char* addr);
ktorrent-5.2.0/plugins/infowidget/GeoIP.h-154-    GEOIP_API char* GeoIP_name_by_name(GeoIP* gi, const char* host);