]> git.ipfire.org Git - people/ms/libloc.git/blob - src/loc/format.h
e6f6dbac7d14b0d8b913fd10c2550fe4c2cadc98
[people/ms/libloc.git] / src / loc / format.h
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
22 #define LOC_DATABASE_MAGIC "LOCDBXX"
23 #define LOC_DATABASE_VERSION 0
24
25 #define LOC_DATABASE_PAGE_SIZE 4096
26
27 struct loc_database_magic {
28 char magic[7];
29
30 // Database version information
31 uint8_t version;
32 };
33
34 struct loc_database_header_v0 {
35 // Vendor who created the database
36 uint32_t vendor;
37
38 // Description of the database
39 uint32_t description;
40
41 // Tells us where the ASes start
42 uint32_t as_offset;
43 uint32_t as_length;
44
45 // Tells us where the pool starts
46 uint32_t pool_offset;
47 uint32_t pool_length;
48 };
49
50 struct loc_database_as_v0 {
51 // The AS number
52 uint32_t number;
53
54 // Name
55 uint32_t name;
56 };
57
58 #endif