]> git.ipfire.org Git - people/ms/libloc.git/blame - src/loc/database.h
database: Implement lookup
[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>
a5db3e49 27
2601e83e 28struct loc_database;
c182393f 29int loc_database_new(struct loc_ctx* ctx, struct loc_database** database, FILE* f);
2601e83e
MT
30struct loc_database* loc_database_ref(struct loc_database* db);
31struct loc_database* loc_database_unref(struct loc_database* db);
32
96ea74a5 33time_t loc_database_created_at(struct loc_database* db);
2601e83e 34const char* loc_database_get_vendor(struct loc_database* db);
2601e83e 35const char* loc_database_get_description(struct loc_database* db);
2601e83e 36
c182393f 37int loc_database_get_as(struct loc_database* db, struct loc_as** as, uint32_t number);
a5db3e49 38size_t loc_database_count_as(struct loc_database* db);
a5db3e49 39
2601e83e
MT
40int loc_database_write(struct loc_database* db, FILE* f);
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
2601e83e 47#endif