]> git.ipfire.org Git - people/ms/libloc.git/log
people/ms/libloc.git
4 years agoMark all nodes as non-visited after walk through tree has completed
Michael Tremer [Thu, 3 Oct 2019 15:30:53 +0000 (15:30 +0000)] 
Mark all nodes as non-visited after walk through tree has completed

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
4 years agoFree visited network nodes when enumerator is deallocated, too
Michael Tremer [Thu, 3 Oct 2019 15:20:09 +0000 (15:20 +0000)] 
Free visited network nodes when enumerator is deallocated, too

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
4 years agoImplement search through the network tree
Michael Tremer [Thu, 3 Oct 2019 15:13:03 +0000 (15:13 +0000)] 
Implement search through the network tree

This could not be implemented as a usual DFS since we cannot simply
have a recursive solution here and need to be able to break the
search at any time.

However, it needs to be tracked where in the graph we are when we
are walking through it to extract the informaton encoded into the
edges.

This is now solved by using a stack that keeps that information
as we walk through the graph.

This solution uses O(1) in memory since the stack can not be larger
than 256 nodes (the maximum path length should be 128).

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
4 years agolibloc: Add function to set country code to database enumerator
Michael Tremer [Wed, 2 Oct 2019 14:07:13 +0000 (14:07 +0000)] 
libloc: Add function to set country code to database enumerator

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
4 years agolocation-query: Allow passing the database path
Michael Tremer [Wed, 2 Oct 2019 13:55:33 +0000 (13:55 +0000)] 
location-query: Allow passing the database path

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
5 years agopython: Avoid declaring loc_ctx multiple times
Michael Tremer [Sat, 12 Jan 2019 16:20:35 +0000 (16:20 +0000)] 
python: Avoid declaring loc_ctx multiple times

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
5 years agoPass right variable to IN6_IN_ADDR_* functions
Michael Tremer [Sat, 12 Jan 2019 16:10:04 +0000 (16:10 +0000)] 
Pass right variable to IN6_IN_ADDR_* functions

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
5 years agoFix evaluation that always is true
Michael Tremer [Sat, 12 Jan 2019 16:09:35 +0000 (16:09 +0000)] 
Fix evaluation that always is true

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
5 years agopython: Do not use any GNU-style initialisers for structs
Michael Tremer [Sat, 12 Jan 2019 16:02:57 +0000 (16:02 +0000)] 
python: Do not use any GNU-style initialisers for structs

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agolocation-query: Use print to print errors, too
Michael Tremer [Thu, 1 Feb 2018 14:22:36 +0000 (14:22 +0000)] 
location-query: Use print to print errors, too

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoFix searching for ASes
Michael Tremer [Thu, 1 Feb 2018 14:19:30 +0000 (14:19 +0000)] 
Fix searching for ASes

The name of the AS has not been converted to lowercase
before which causes that we didn't find all ASes.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agolocation-query: Implement searching for an AS that matches a string
Michael Tremer [Thu, 1 Feb 2018 14:18:15 +0000 (14:18 +0000)] 
location-query: Implement searching for an AS that matches a string

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoi18n: Ignore compiled translation files
Michael Tremer [Thu, 1 Feb 2018 14:14:19 +0000 (14:14 +0000)] 
i18n: Ignore compiled translation files

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agolocation-query: Implement getting information about an AS
Michael Tremer [Thu, 1 Feb 2018 14:13:48 +0000 (14:13 +0000)] 
location-query: Implement getting information about an AS

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoi18n: Add German translation
Michael Tremer [Thu, 1 Feb 2018 14:06:36 +0000 (14:06 +0000)] 
i18n: Add German translation

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoAdd internationalisation with intltool and gettext
Michael Tremer [Thu, 1 Feb 2018 14:04:25 +0000 (14:04 +0000)] 
Add internationalisation with intltool and gettext

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Raise proper error when database does not exist
Michael Tremer [Thu, 1 Feb 2018 13:39:27 +0000 (13:39 +0000)] 
python: Raise proper error when database does not exist

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Expose version of the module
Michael Tremer [Thu, 1 Feb 2018 13:33:38 +0000 (13:33 +0000)] 
python: Expose version of the module

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoMakefile: Configure database directory
Michael Tremer [Thu, 1 Feb 2018 13:20:06 +0000 (13:20 +0000)] 
Makefile: Configure database directory

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Add script to lookup database from command line
Michael Tremer [Thu, 1 Feb 2018 13:00:44 +0000 (13:00 +0000)] 
python: Add script to lookup database from command line

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Add function to set log level
Michael Tremer [Thu, 1 Feb 2018 11:54:01 +0000 (11:54 +0000)] 
python: Add function to set log level

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoFix getting wrong bits in IP addresses
Michael Tremer [Wed, 31 Jan 2018 21:45:21 +0000 (21:45 +0000)] 
Fix getting wrong bits in IP addresses

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agotest: Fix network test for non-existant address
Michael Tremer [Wed, 31 Jan 2018 00:31:41 +0000 (00:31 +0000)] 
test: Fix network test for non-existant address

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Remove inexact match
Michael Tremer [Wed, 31 Jan 2018 00:28:33 +0000 (00:28 +0000)] 
database: Remove inexact match

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Walk down into the tree as much as possible first
Michael Tremer [Tue, 30 Jan 2018 23:29:52 +0000 (23:29 +0000)] 
database: Walk down into the tree as much as possible first

Instead of stopping when we find the largest network that
matches, we will have to go as deep as we can and then
check all networks on the way from the bottom up.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Fix checking upper bound when matching IP addresses
Michael Tremer [Tue, 30 Jan 2018 23:29:28 +0000 (23:29 +0000)] 
network: Fix checking upper bound when matching IP addresses

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoRefactor compating IP addresses
Michael Tremer [Tue, 30 Jan 2018 23:28:21 +0000 (23:28 +0000)] 
Refactor compating IP addresses

memcmp does not seem to be the best choice here.

This function is a naive implementation
but does the job very well.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Improve error logging when da network could not be loaded
Michael Tremer [Tue, 30 Jan 2018 22:33:55 +0000 (22:33 +0000)] 
database: Improve error logging when da network could not be loaded

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Encode prefix length into tree
Michael Tremer [Tue, 30 Jan 2018 22:30:46 +0000 (22:30 +0000)] 
database: Encode prefix length into tree

To keep the tree smaller and to not have too many sparse
nodes in it that waste a lot of memory, we encode the
prefix now into the tree as depth.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Allow setting an empty country code
Michael Tremer [Tue, 30 Jan 2018 22:29:45 +0000 (22:29 +0000)] 
network: Allow setting an empty country code

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Show country code that was invalid
Michael Tremer [Tue, 30 Jan 2018 16:02:24 +0000 (16:02 +0000)] 
python: Show country code that was invalid

Makes debugging easier

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Raise IndexError when adding the same network twice
Michael Tremer [Tue, 30 Jan 2018 15:37:40 +0000 (15:37 +0000)] 
python: Raise IndexError when adding the same network twice

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agowriter: Throw better exception when network address was invalid
Michael Tremer [Tue, 30 Jan 2018 15:24:45 +0000 (15:24 +0000)] 
writer: Throw better exception when network address was invalid

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Fix underflow in for loop when generating bitmask
Michael Tremer [Tue, 30 Jan 2018 15:16:15 +0000 (15:16 +0000)] 
network: Fix underflow in for loop when generating bitmask

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoFix another typo
Michael Tremer [Mon, 8 Jan 2018 19:00:19 +0000 (19:00 +0000)] 
Fix another typo

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Implement searching for ASes
Michael Tremer [Thu, 25 Jan 2018 22:02:52 +0000 (22:02 +0000)] 
python: Implement searching for ASes

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Implement searching for ASes that match a string
Michael Tremer [Thu, 25 Jan 2018 21:26:48 +0000 (21:26 +0000)] 
database: Implement searching for ASes that match a string

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoAdd database enumerator interface to perform iterative searches
Michael Tremer [Thu, 25 Jan 2018 20:44:45 +0000 (20:44 +0000)] 
Add database enumerator interface to perform iterative searches

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoWhen formatting an IP address only pass the actual IP address
Michael Tremer [Mon, 8 Jan 2018 18:58:00 +0000 (18:58 +0000)] 
When formatting an IP address only pass the actual IP address

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Fix calculating the last IP address of a network
Michael Tremer [Mon, 8 Jan 2018 18:56:00 +0000 (18:56 +0000)] 
network: Fix calculating the last IP address of a network

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoCorrectly handle invalid IP addresses
Michael Tremer [Mon, 8 Jan 2018 18:42:21 +0000 (18:42 +0000)] 
Correctly handle invalid IP addresses

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Make level variable unsigned (as used in log messages)
Michael Tremer [Mon, 8 Jan 2018 18:36:49 +0000 (18:36 +0000)] 
database: Make level variable unsigned (as used in log messages)

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoFix typo in comparison function
Michael Tremer [Mon, 8 Jan 2018 18:29:29 +0000 (18:29 +0000)] 
Fix typo in comparison function

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoFix typo
Michael Tremer [Mon, 8 Jan 2018 18:25:28 +0000 (18:25 +0000)] 
Fix typo

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Stop walking down the tree when we hit a leaf node
Michael Tremer [Mon, 8 Jan 2018 18:06:13 +0000 (18:06 +0000)] 
database: Stop walking down the tree when we hit a leaf node

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoAdd license attribute to the database
Michael Tremer [Mon, 8 Jan 2018 17:57:46 +0000 (17:57 +0000)] 
Add license attribute to the database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Save path when opening the database
Michael Tremer [Mon, 8 Jan 2018 17:46:17 +0000 (17:46 +0000)] 
python: Save path when opening the database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoRemove test.db when running "make clean"
Michael Tremer [Mon, 8 Jan 2018 17:41:47 +0000 (17:41 +0000)] 
Remove test.db when running "make clean"

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoAdd a few examples that show how to use the python module
Michael Tremer [Mon, 8 Jan 2018 17:39:55 +0000 (17:39 +0000)] 
Add a few examples that show how to use the python module

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Handle error codes when searching for an AS
Michael Tremer [Mon, 8 Jan 2018 17:33:23 +0000 (17:33 +0000)] 
python: Handle error codes when searching for an AS

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoInstall python module into correct location
Michael Tremer [Mon, 8 Jan 2018 17:25:37 +0000 (17:25 +0000)] 
Install python module into correct location

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoDrop loc_load function
Michael Tremer [Mon, 8 Jan 2018 17:14:53 +0000 (17:14 +0000)] 
Drop loc_load function

We don't need this any more

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoHide all functions that we don't want to make public
Michael Tremer [Mon, 8 Jan 2018 17:11:33 +0000 (17:11 +0000)] 
Hide all functions that we don't want to make public

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoRemove loc_database_write which no longer exists from header
Michael Tremer [Mon, 8 Jan 2018 17:03:05 +0000 (17:03 +0000)] 
Remove loc_database_write which no longer exists from header

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agowriter: Move alignment into each section writer
Michael Tremer [Mon, 8 Jan 2018 17:01:08 +0000 (17:01 +0000)] 
writer: Move alignment into each section writer

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Implement adding networks to Writer
Michael Tremer [Mon, 8 Jan 2018 16:59:30 +0000 (16:59 +0000)] 
python: Implement adding networks to Writer

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Unmap all mapped sections when freeing database
Michael Tremer [Mon, 8 Jan 2018 16:52:01 +0000 (16:52 +0000)] 
database: Unmap all mapped sections when freeing database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Make lookup function available
Michael Tremer [Mon, 8 Jan 2018 16:42:46 +0000 (16:42 +0000)] 
python: Make lookup function available

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoconfigure: Check for the existance of some headers
Michael Tremer [Mon, 8 Jan 2018 16:30:24 +0000 (16:30 +0000)] 
configure: Check for the existance of some headers

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Implement lookup
Michael Tremer [Mon, 8 Jan 2018 15:56:28 +0000 (15:56 +0000)] 
database: Implement lookup

This allows to pass an IP address to the database and
to return the result

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Implement reading a network from the database
Michael Tremer [Mon, 8 Jan 2018 11:55:58 +0000 (11:55 +0000)] 
database: Implement reading a network from the database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Load networks from database
Michael Tremer [Sun, 7 Jan 2018 20:21:16 +0000 (20:21 +0000)] 
database: Load networks from database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Pass header to functions loading database sections
Michael Tremer [Sun, 7 Jan 2018 20:12:25 +0000 (20:12 +0000)] 
database: Pass header to functions loading database sections

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agodatabase: Map network nodes section when opening the database
Michael Tremer [Sun, 7 Jan 2018 20:09:44 +0000 (20:09 +0000)] 
database: Map network nodes section when opening the database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agowriter: Write out the network tree
Michael Tremer [Sun, 7 Jan 2018 13:32:51 +0000 (13:32 +0000)] 
writer: Write out the network tree

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Fix walking through the tree in order
Michael Tremer [Fri, 5 Jan 2018 16:44:56 +0000 (16:44 +0000)] 
network: Fix walking through the tree in order

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agotest: Write a ASN to the network database
Michael Tremer [Fri, 5 Jan 2018 16:41:32 +0000 (16:41 +0000)] 
test: Write a ASN to the network database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoOne byte doesn't have to be converted to big endian
Michael Tremer [Fri, 5 Jan 2018 16:40:21 +0000 (16:40 +0000)] 
One byte doesn't have to be converted to big endian

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agotest: Write two test networks to the database
Michael Tremer [Fri, 5 Jan 2018 16:35:46 +0000 (16:35 +0000)] 
test: Write two test networks to the database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoDeclare a static function as static
Michael Tremer [Fri, 5 Jan 2018 16:30:46 +0000 (16:30 +0000)] 
Declare a static function as static

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agotest: Add a second network to a tree
Michael Tremer [Fri, 5 Jan 2018 16:30:01 +0000 (16:30 +0000)] 
test: Add a second network to a tree

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Implement function to count all nodes
Michael Tremer [Fri, 5 Jan 2018 16:25:46 +0000 (16:25 +0000)] 
network: Implement function to count all nodes

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Always use the first address of a network
Michael Tremer [Tue, 2 Jan 2018 17:38:21 +0000 (17:38 +0000)] 
network: Always use the first address of a network

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoMap prefix to IPv6 as well for IPv4 addresses
Michael Tremer [Tue, 2 Jan 2018 17:26:02 +0000 (17:26 +0000)] 
Map prefix to IPv6 as well for IPv4 addresses

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoValidate the prefix to be within range
Michael Tremer [Tue, 2 Jan 2018 17:17:57 +0000 (17:17 +0000)] 
Validate the prefix to be within range

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoPrevent segmentation fault when no prefix is present
Michael Tremer [Tue, 2 Jan 2018 17:07:03 +0000 (17:07 +0000)] 
Prevent segmentation fault when no prefix is present

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Support parsing IPv4 addresses and map them to IPv6
Michael Tremer [Sat, 30 Dec 2017 16:35:56 +0000 (16:35 +0000)] 
network: Support parsing IPv4 addresses and map them to IPv6

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoMake AS independent from stringpool
Michael Tremer [Sat, 30 Dec 2017 15:26:14 +0000 (15:26 +0000)] 
Make AS independent from stringpool

Strings are written to the string pool when a AS is written to
disk.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agonetwork: Add asn and remove reference to struct loc_as
Michael Tremer [Fri, 29 Dec 2017 20:39:04 +0000 (20:39 +0000)] 
network: Add asn and remove reference to struct loc_as

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Implement Network class
Michael Tremer [Fri, 29 Dec 2017 20:21:45 +0000 (20:21 +0000)] 
python: Implement Network class

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Implement setting description to the writer
Michael Tremer [Fri, 29 Dec 2017 19:52:17 +0000 (19:52 +0000)] 
python: Implement setting description to the writer

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Fix setters
Michael Tremer [Fri, 29 Dec 2017 19:48:49 +0000 (19:48 +0000)] 
python: Fix setters

Setters however expected a tuple instead of the value directly

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Implement adding an AS to the writer
Michael Tremer [Fri, 29 Dec 2017 19:47:38 +0000 (19:47 +0000)] 
python: Implement adding an AS to the writer

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Add write method to Writer
Michael Tremer [Fri, 29 Dec 2017 15:13:49 +0000 (15:13 +0000)] 
python: Add write method to Writer

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Add Writer class
Michael Tremer [Fri, 29 Dec 2017 14:57:52 +0000 (14:57 +0000)] 
python: Add Writer class

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agowriter: Correctly increase offset when writing ASes
Michael Tremer [Fri, 29 Dec 2017 14:41:35 +0000 (14:41 +0000)] 
writer: Correctly increase offset when writing ASes

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Impement setting the name of an AS
Michael Tremer [Fri, 29 Dec 2017 14:29:50 +0000 (14:29 +0000)] 
python: Impement setting the name of an AS

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Implement comparison of ASes
Michael Tremer [Fri, 29 Dec 2017 14:25:34 +0000 (14:25 +0000)] 
python: Implement comparison of ASes

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Show better repr for AS classes
Michael Tremer [Fri, 29 Dec 2017 14:17:56 +0000 (14:17 +0000)] 
python: Show better repr for AS classes

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoas: Return NULL if name is not set
Michael Tremer [Fri, 29 Dec 2017 14:17:39 +0000 (14:17 +0000)] 
as: Return NULL if name is not set

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Remove reference to context from database
Michael Tremer [Fri, 29 Dec 2017 14:07:42 +0000 (14:07 +0000)] 
python: Remove reference to context from database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Remove local stringpool and ctx from AS class
Michael Tremer [Fri, 29 Dec 2017 14:06:00 +0000 (14:06 +0000)] 
python: Remove local stringpool and ctx from AS class

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Access ASes from database
Michael Tremer [Fri, 29 Dec 2017 14:03:41 +0000 (14:03 +0000)] 
python: Access ASes from database

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Only use global loc context
Michael Tremer [Fri, 29 Dec 2017 13:00:24 +0000 (13:00 +0000)] 
python: Only use global loc context

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Create a global loc_ctx* context
Michael Tremer [Fri, 29 Dec 2017 12:02:21 +0000 (12:02 +0000)] 
python: Create a global loc_ctx* context

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Add AS class
Michael Tremer [Fri, 29 Dec 2017 11:53:02 +0000 (11:53 +0000)] 
python: Add AS class

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Expose database creation time
Michael Tremer [Fri, 29 Dec 2017 11:32:56 +0000 (11:32 +0000)] 
python: Expose database creation time

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agopython: Expose database description and vendor
Michael Tremer [Fri, 29 Dec 2017 11:27:30 +0000 (11:27 +0000)] 
python: Expose database description and vendor

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoheaders: Don't make private structures public
Michael Tremer [Fri, 29 Dec 2017 11:22:22 +0000 (11:22 +0000)] 
headers: Don't make private structures public

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
6 years agoMove all header files into src/loc and install them
Michael Tremer [Fri, 29 Dec 2017 11:20:30 +0000 (11:20 +0000)] 
Move all header files into src/loc and install them

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>