]> git.ipfire.org Git - location/libloc.git/blame - src/loc/writer.h
database: Add support for two signatures
[location/libloc.git] / src / loc / writer.h
CommitLineData
c182393f
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_WRITER_H
18#define LIBLOC_WRITER_H
19
20#include <stdio.h>
21
22#include <loc/libloc.h>
9fc7f001 23#include <loc/as.h>
ec684c1a 24#include <loc/country.h>
b904896a 25#include <loc/database.h>
3b5f4af2 26#include <loc/network.h>
c182393f 27
c182393f
MT
28struct loc_writer;
29
5ce881d4
MT
30int loc_writer_new(struct loc_ctx* ctx, struct loc_writer** writer,
31 FILE* fkey1, FILE* fkey2);
c182393f
MT
32
33struct loc_writer* loc_writer_ref(struct loc_writer* writer);
34struct loc_writer* loc_writer_unref(struct loc_writer* writer);
35
36const char* loc_writer_get_vendor(struct loc_writer* writer);
37int loc_writer_set_vendor(struct loc_writer* writer, const char* vendor);
38const char* loc_writer_get_description(struct loc_writer* writer);
39int loc_writer_set_description(struct loc_writer* writer, const char* description);
4bf49d00
MT
40const char* loc_writer_get_license(struct loc_writer* writer);
41int loc_writer_set_license(struct loc_writer* writer, const char* license);
c182393f
MT
42
43int loc_writer_add_as(struct loc_writer* writer, struct loc_as** as, uint32_t number);
3b5f4af2 44int loc_writer_add_network(struct loc_writer* writer, struct loc_network** network, const char* string);
ec684c1a 45int loc_writer_add_country(struct loc_writer* writer, struct loc_country** country, const char* country_code);
c182393f 46
22c7b98b 47int loc_writer_write(struct loc_writer* writer, FILE* f, enum loc_database_version);
c182393f
MT
48
49#endif