Crate as2org_rs

Source
Expand description

§CAIDA as2org utility.

§Data source

§Data structure

As2orgAsInfo:

  • asn: the AS number
  • name: the name provide for the individual AS number
  • country_code: the country code of the organization’s registration country
  • org_id: maps to an organization entry
  • org_name: the name of the organization
  • source: the RIR or NIR database which was contained this entry

§Examples

use as2org_rs::As2org;

let as2org = As2org::new(None).unwrap();
dbg!(as2org.get_as_info(400644).unwrap());
dbg!(as2org.get_siblings(15169).unwrap());
assert!(as2org.are_siblings(15169, 36040));

Structs§

As2org
As2orgAsInfo