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