]> git.ipfire.org Git - people/ms/libloc.git/blob - src/loc/libloc.h
database: Implement lookup
[people/ms/libloc.git] / src / loc / libloc.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_H
18 #define LIBLOC_H
19
20 #include <netinet/in.h>
21 #include <stdarg.h>
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 struct loc_ctx;
28 struct loc_ctx *loc_ref(struct loc_ctx* ctx);
29 struct loc_ctx *loc_unref(struct loc_ctx* ctx);
30
31 int loc_new(struct loc_ctx** ctx);
32 void loc_set_log_fn(struct loc_ctx* ctx,
33 void (*log_fn)(struct loc_ctx* ctx,
34 int priority, const char* file, int line, const char* fn,
35 const char* format, va_list args));
36 int loc_get_log_priority(struct loc_ctx* ctx);
37 void loc_set_log_priority(struct loc_ctx* ctx, int priority);
38
39 int loc_load(struct loc_ctx* ctx, const char* path);
40 int loc_parse_address(struct loc_ctx* ctx, const char* string, struct in6_addr* address);
41
42 #ifdef __cplusplus
43 } /* extern "C" */
44 #endif
45
46 #endif