]> git.ipfire.org Git - people/ms/libloc.git/blame - src/lua/network.h
importer: Use the downloader to import Geofeeds
[people/ms/libloc.git] / src / lua / network.h
CommitLineData
e914e3ca
MT
1/*
2 libloc - A library to determine the location of someone on the Internet
3
4 Copyright (C) 2024 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 LUA_LOCATION_NETWORK_H
18#define LUA_LOCATION_NETWORK_H
19
20#include <lua.h>
21#include <lauxlib.h>
22
9fac2ef2
MT
23#include <libloc/network.h>
24
e914e3ca
MT
25int register_network(lua_State* L);
26
9fac2ef2
MT
27int create_network(lua_State* L, struct loc_network* network);
28
e914e3ca 29#endif /* LUA_LOCATION_NETWORK_H */