rust-geoip

GeoIP bindings for Rust.

Currently only supports: * Autonomous System Numbers Legacy Database * GeoIP Legacy City Database

Installation: use Cargo.

Tested with GeoIP v1.6.9.

Usage:

City Database: ```rust // Open by DBType let geoip = GeoIp::open_type(DBType::CityEditionRev1, Options::MemoryCache).unwrap(); // Open by Path let geoip = GeoIp::open(&Path::new("/opt/geoip/GeoLiteCity.dat"), Options::MemoryCache) .unwrap(); /* GeoIp { info: Ok( "GEO-133 20160621 Build 1 Copyright (c) 2016 MaxMind Inc All Rights Re" ) } */

// Query by IP let ip = IpAddr::V4("8.8.8.8".parse().unwrap()); let res = geoip.cityinfobyip(ip).unwrap(); /* CityInfo { countrycode: Some( "US" ), countrycode3: Some( "USA" ), countryname: Some( "United States" ), region: Some( "CA" ), city: Some( "Mountain View" ), postalcode: Some( "94035" ), latitude: 37.386, longitude: -122.0838, dmacode: Some( 807 ), areacode: Some( 650 ), continentcode: Some( "NA" ), netmask: 24 } */

// Get additional information (as compiled in the C library) let regionname = GeoIp::regionnamebycode("US", "CA"); // Some("California")

// Get time zone inforamtion (as compiled in the C library) let timezone = GeoIp::timezonebycountryandregion("US", "CA"); // Some("America/Los_Angeles") ```

AS Database:

```rust // Open by Path let geoip = GeoIp::open(&Path::new("/opt/geoip/GeoIPASNum.dat"), Options::MemoryCache) .unwrap(); /* GeoIp { info: Ok( "GEO-117 20160627 Build 1 Copyright (c) 2016 MaxMind Inc All Rights Re" ) } */

// Query by IP let ip = IpAddr::V4("8.8.8.8".parse().unwrap()); let res = geoip.asinfoby_ip(ip).unwrap(); /* ASInfo { asn: 15169, name: "Google Inc.", netmask: 24 } */ ```