]> git.ipfire.org Git - people/ms/libloc.git/blame - src/loc/database.h
Add a dictionary with countries to the database
[people/ms/libloc.git] / src / loc / database.h
CommitLineData
2601e83e
MT
1/*
2 libloc - A library to determine the location of someone on the Internet
3
4 Copyright (C) 2017 IPFire Development Team <info@ipfire.org>
5
6 This library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
10
11 This library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15*/
16
17#ifndef LIBLOC_DATABASE_H
18#define LIBLOC_DATABASE_H
19
2a30e4de 20#include <netinet/in.h>
2601e83e 21#include <stdio.h>
a5db3e49 22#include <stdint.h>
2601e83e
MT
23
24#include <loc/libloc.h>
2a30e4de 25#include <loc/network.h>
9fc7f001 26#include <loc/as.h>
ec684c1a 27#include <loc/country.h>
a5db3e49 28
2601e83e 29struct loc_database;
c182393f 30int loc_database_new(struct loc_ctx* ctx, struct loc_database** database, FILE* f);
2601e83e
MT
31struct loc_database* loc_database_ref(struct loc_database* db);
32struct loc_database* loc_database_unref(struct loc_database* db);
33
96ea74a5 34time_t loc_database_created_at(struct loc_database* db);
2601e83e 35const char* loc_database_get_vendor(struct loc_database* db);
2601e83e 36const char* loc_database_get_description(struct loc_database* db);
4bf49d00 37const char* loc_database_get_license(struct loc_database* db);
2601e83e 38
c182393f 39int loc_database_get_as(struct loc_database* db, struct loc_as** as, uint32_t number);
a5db3e49 40size_t loc_database_count_as(struct loc_database* db);
a5db3e49 41
2a30e4de
MT
42int loc_database_lookup(struct loc_database* db,
43 struct in6_addr* address, struct loc_network** network);
44int loc_database_lookup_from_string(struct loc_database* db,
45 const char* string, struct loc_network** network);
46
ec684c1a
MT
47int loc_database_get_country(struct loc_database* db,
48 struct loc_country** country, const char* code);
49
ccc7ab4e
MT
50enum loc_database_enumerator_mode {
51 LOC_DB_ENUMERATE_NETWORKS = 1,
52 LOC_DB_ENUMERATE_ASES = 2,
53};
54
7e13db74 55struct loc_database_enumerator;
ccc7ab4e
MT
56int loc_database_enumerator_new(struct loc_database_enumerator** enumerator,
57 struct loc_database* db, enum loc_database_enumerator_mode mode);
7e13db74
MT
58struct loc_database_enumerator* loc_database_enumerator_ref(struct loc_database_enumerator* enumerator);
59struct loc_database_enumerator* loc_database_enumerator_unref(struct loc_database_enumerator* enumerator);
60
d3d8ede6 61int loc_database_enumerator_set_string(struct loc_database_enumerator* enumerator, const char* string);
35bb3a32 62int loc_database_enumerator_set_country_code(struct loc_database_enumerator* enumerator, const char* country_code);
82910b95 63int loc_database_enumerator_set_asn(struct loc_database_enumerator* enumerator, unsigned int asn);
9268db5a 64int loc_database_enumerator_set_flag(struct loc_database_enumerator* enumerator, enum loc_network_flags flag);
15f79e2d
MT
65int loc_database_enumerator_next_as(
66 struct loc_database_enumerator* enumerator, struct loc_as** as);
67int loc_database_enumerator_next_network(
68 struct loc_database_enumerator* enumerator, struct loc_network** network);
d3d8ede6 69
2601e83e 70#endif