]> git.ipfire.org Git - location/libloc.git/blame - src/loc/format.h
Hide all functions that we don't want to make public
[location/libloc.git] / src / loc / format.h
CommitLineData
a5db3e49
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_FORMAT_H
18#define LIBLOC_FORMAT_H
19
20#include <stdint.h>
21
8eb67d26 22#define LOC_DATABASE_MAGIC "LOCDBXX"
30ac38a1
MT
23
24#ifdef LIBLOC_PRIVATE
25
8eb67d26
MT
26#define LOC_DATABASE_VERSION 0
27
6809d5ac
MT
28#define LOC_DATABASE_PAGE_SIZE 4096
29
8eb67d26
MT
30struct loc_database_magic {
31 char magic[7];
32
33 // Database version information
34 uint8_t version;
35};
36
a5db3e49 37struct loc_database_header_v0 {
96ea74a5
MT
38 // UNIX timestamp when the database was created
39 uint64_t created_at;
40
a5db3e49
MT
41 // Vendor who created the database
42 uint32_t vendor;
43
44 // Description of the database
45 uint32_t description;
46
47 // Tells us where the ASes start
48 uint32_t as_offset;
49 uint32_t as_length;
50
f3e02bc5 51 // Tells us where the networks start
438db08c
MT
52 uint32_t network_data_offset;
53 uint32_t network_data_length;
54
f66b7b09 55 // Tells us where the network nodes start
438db08c
MT
56 uint32_t network_tree_offset;
57 uint32_t network_tree_length;
f3e02bc5 58
a5db3e49
MT
59 // Tells us where the pool starts
60 uint32_t pool_offset;
61 uint32_t pool_length;
62};
63
f3e02bc5 64struct loc_database_network_node_v0 {
3b5f4af2
MT
65 uint32_t zero;
66 uint32_t one;
67};
68
f3e02bc5 69struct loc_database_network_v0 {
3b5f4af2
MT
70 // The start address will be encoded in the tree
71 uint8_t prefix;
72
73 // The country this network is located in
74 char country_code[2];
75
76 // ASN
77 uint32_t asn;
78};
79
a5db3e49
MT
80struct loc_database_as_v0 {
81 // The AS number
82 uint32_t number;
83
84 // Name
85 uint32_t name;
86};
87
88#endif
30ac38a1 89#endif