]> git.ipfire.org Git - people/ms/libloc.git/blame - src/database.h
database: Log how long it took to retrieve an AS
[people/ms/libloc.git] / src / 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
20#include <stdio.h>
a5db3e49 21#include <stdint.h>
2601e83e
MT
22
23#include <loc/libloc.h>
24
a5db3e49
MT
25#include "as.h"
26
2601e83e 27struct loc_database;
c182393f 28int loc_database_new(struct loc_ctx* ctx, struct loc_database** database, FILE* f);
2601e83e
MT
29struct loc_database* loc_database_ref(struct loc_database* db);
30struct loc_database* loc_database_unref(struct loc_database* db);
31
96ea74a5 32time_t loc_database_created_at(struct loc_database* db);
2601e83e 33const char* loc_database_get_vendor(struct loc_database* db);
2601e83e 34const char* loc_database_get_description(struct loc_database* db);
2601e83e 35
c182393f 36int loc_database_get_as(struct loc_database* db, struct loc_as** as, uint32_t number);
a5db3e49 37size_t loc_database_count_as(struct loc_database* db);
a5db3e49 38
2601e83e
MT
39int loc_database_read(struct loc_database* db, FILE* f);
40int loc_database_write(struct loc_database* db, FILE* f);
41
42#endif