pyrad 2.4__py3-none-any.whl → 2.5.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- docs/Makefile +20 -0
- docs/make.bat +36 -0
- docs/source/_static/logo.png +0 -0
- docs/source/api/client.rst +10 -0
- docs/source/api/dictionary.rst +10 -0
- docs/source/api/host.rst +7 -0
- docs/source/api/packet.rst +48 -0
- docs/source/api/proxy.rst +7 -0
- docs/source/api/server.rst +13 -0
- docs/source/conf.py +158 -0
- docs/source/index.rst +75 -0
- example/acct.py +41 -0
- example/auth.py +37 -0
- example/auth_async.py +164 -0
- example/client-coa.py +61 -0
- example/coa.py +40 -0
- example/dictionary +405 -0
- example/dictionary.freeradius +91 -0
- example/pyrad.log +0 -0
- example/server.py +68 -0
- example/server_async.py +117 -0
- example/status.py +26 -0
- pyrad/__init__.py +3 -3
- pyrad/client.py +14 -6
- pyrad/client_async.py +16 -13
- pyrad/dictfile.py +2 -5
- pyrad/dictionary.py +6 -7
- pyrad/host.py +1 -1
- pyrad/packet.py +145 -114
- pyrad/proxy.py +2 -2
- pyrad/server.py +3 -7
- pyrad/server_async.py +3 -4
- pyrad/tests/__init__.py +5 -0
- pyrad/tests/mock.py +145 -0
- pyrad/tests/test_bidict.py +56 -0
- pyrad/tests/test_client.py +183 -0
- pyrad/tests/test_dictionary.py +357 -0
- pyrad/tests/test_host.py +87 -0
- pyrad/tests/test_packet.py +679 -0
- pyrad/tests/test_proxy.py +96 -0
- pyrad/tests/test_server.py +323 -0
- pyrad/tests/test_tools.py +126 -0
- pyrad/tools.py +254 -158
- {pyrad-2.4.dist-info → pyrad-2.5.0.dist-info}/METADATA +44 -20
- pyrad-2.5.0.dist-info/RECORD +51 -0
- {pyrad-2.4.dist-info → pyrad-2.5.0.dist-info}/WHEEL +1 -1
- {pyrad-2.4.dist-info → pyrad-2.5.0.dist-info/licenses}/LICENSE.txt +1 -1
- pyrad-2.5.0.dist-info/top_level.txt +3 -0
- pyrad-2.4.dist-info/RECORD +0 -19
- pyrad-2.4.dist-info/top_level.txt +0 -1
- {pyrad-2.4.dist-info → pyrad-2.5.0.dist-info}/zip-safe +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Copyright 2020 Istvan Ruzman. All rights reserved.
|
|
2
|
-
Copyright 2017-
|
|
2
|
+
Copyright 2017-2026 Christian Giese. All rights reserved.
|
|
3
3
|
Copyright 2007-2008 Simplon. All rights reserved.
|
|
4
4
|
Copyright 2002-2008 Wichert Akkerman. All rights reserved.
|
|
5
5
|
|
pyrad-2.4.dist-info/RECORD
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
pyrad/__init__.py,sha256=WTHWvpUMR9JIkX4MowRQR8B50EPg7NSEe-JaOl--Cv8,1433
|
|
2
|
-
pyrad/bidict.py,sha256=wgSr6odl-sYqkHrAFvCqRPjKOPpck4tZ-YxXivmPLsQ,870
|
|
3
|
-
pyrad/client.py,sha256=ZzD0q6VL_lYb3mkMtQayBM7EGcxeqOWm8ff7GItblPg,8002
|
|
4
|
-
pyrad/client_async.py,sha256=gYRsRhYgNVExn7NmutjZ5sH9G1YFpic1egA_3AEaHOI,14415
|
|
5
|
-
pyrad/curved.py,sha256=PbtHrJjk9S5BBSF9jmDvOMZKkaJcbAaICodTQpqDbBg,2204
|
|
6
|
-
pyrad/dictfile.py,sha256=4Uk2o7sl87ajTDe5Vng3xbM8z4p-sn0SRjD35o5HaGs,2927
|
|
7
|
-
pyrad/dictionary.py,sha256=RXrzASYOCEknOTMhhEV2190twaOoSXrL77LOE2tUpC4,14372
|
|
8
|
-
pyrad/host.py,sha256=a_yC3cdOEsyD-NhVNYGYv40nkKANDLXu0OJ9wy7CVg8,3627
|
|
9
|
-
pyrad/packet.py,sha256=IY2NpTi8L-zv2SBu3E53quYKTt48CoPSFN4-KSQqfZk,33619
|
|
10
|
-
pyrad/proxy.py,sha256=T49TMyqKGg6Wj7teksEIV6vPb6NrPbP3nDJDuWwfB-A,2486
|
|
11
|
-
pyrad/server.py,sha256=oXq_wrrH0ms6ethz5XCfQct9EqW-AL7I5Jp3_9Pm_r4,12639
|
|
12
|
-
pyrad/server_async.py,sha256=elqKwJa_5O91tWkK4zG3-ScVXccClORYbB_8x9-7WqM,11894
|
|
13
|
-
pyrad/tools.py,sha256=Vq7F_bHJO0T0AVSM8TC6dH6jc_NbaQMU63t_lp8OarA,7061
|
|
14
|
-
pyrad-2.4.dist-info/LICENSE.txt,sha256=mY4EIrpMoVGdfWGVngC564N3JTsAgIs7r9yFYo0r4rg,1660
|
|
15
|
-
pyrad-2.4.dist-info/METADATA,sha256=amL6BGX8U2dHPPKv4X3LtP_Iykoi8Fd4sBnkKN6noZc,3455
|
|
16
|
-
pyrad-2.4.dist-info/WHEEL,sha256=EVRjI69F5qVjm_YgqcTXPnTAv3BfSUr0WVAHuSP3Xoo,92
|
|
17
|
-
pyrad-2.4.dist-info/top_level.txt,sha256=bys1IN1zmqkdz2TVOY6Jq_3NL2vMy6CJ6vaZcczR6cQ,6
|
|
18
|
-
pyrad-2.4.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
19
|
-
pyrad-2.4.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
pyrad
|
|
File without changes
|