]> git.ipfire.org Git - people/ms/libloc.git/blame - src/libloc/libloc.h
importer: Drop EDROP as it has been merged into DROP
[people/ms/libloc.git] / src / libloc / 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
39#ifdef __cplusplus
40} /* extern "C" */
41#endif
42
43#endif