]> git.ipfire.org Git - people/ms/libloc.git/blame - src/python/as.h
python: Access ASes from database
[people/ms/libloc.git] / src / python / as.h
CommitLineData
fadebc89
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 PYTHON_LOCATION_AS_H
18#define PYTHON_LOCATION_AS_H
19
20#include <Python.h>
21
22#include <loc/libloc.h>
23#include <loc/as.h>
24#include <loc/stringpool.h>
25
26typedef struct {
27 PyObject_HEAD
28 struct loc_ctx* ctx;
29 struct loc_stringpool* pool;
30 struct loc_as* as;
31} ASObject;
32
33extern PyTypeObject ASType;
34
86ca7ef7
MT
35PyObject* new_as(PyTypeObject* type, struct loc_as* as);
36
fadebc89 37#endif /* PYTHON_LOCATION_AS_H */