pyrad 2.3__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.
Files changed (53) hide show
  1. docs/Makefile +20 -0
  2. docs/make.bat +36 -0
  3. docs/source/_static/logo.png +0 -0
  4. docs/source/api/client.rst +10 -0
  5. docs/source/api/dictionary.rst +10 -0
  6. docs/source/api/host.rst +7 -0
  7. docs/source/api/packet.rst +48 -0
  8. docs/source/api/proxy.rst +7 -0
  9. docs/source/api/server.rst +13 -0
  10. docs/source/conf.py +158 -0
  11. docs/source/index.rst +75 -0
  12. example/acct.py +41 -0
  13. example/auth.py +37 -0
  14. example/auth_async.py +164 -0
  15. example/client-coa.py +61 -0
  16. example/coa.py +40 -0
  17. example/dictionary +405 -0
  18. example/dictionary.freeradius +91 -0
  19. example/pyrad.log +0 -0
  20. example/server.py +68 -0
  21. example/server_async.py +117 -0
  22. example/status.py +26 -0
  23. pyrad/__init__.py +3 -3
  24. pyrad/client.py +54 -9
  25. pyrad/client_async.py +22 -14
  26. pyrad/dictfile.py +2 -5
  27. pyrad/dictionary.py +12 -1
  28. pyrad/host.py +1 -1
  29. pyrad/packet.py +208 -133
  30. pyrad/proxy.py +2 -2
  31. pyrad/server.py +3 -7
  32. pyrad/server_async.py +4 -5
  33. pyrad/tests/__init__.py +2 -2
  34. pyrad/tests/mock.py +5 -1
  35. pyrad/tests/{testBidict.py → test_bidict.py} +2 -2
  36. pyrad/tests/{testClient.py → test_client.py} +28 -30
  37. pyrad/tests/{testDictionary.py → test_dictionary.py} +38 -21
  38. pyrad/tests/{testHost.py → test_host.py} +10 -10
  39. pyrad/tests/test_packet.py +679 -0
  40. pyrad/tests/{testProxy.py → test_proxy.py} +11 -11
  41. pyrad/tests/{testServer.py → test_server.py} +35 -33
  42. pyrad/tests/test_tools.py +126 -0
  43. pyrad/tools.py +254 -158
  44. {pyrad-2.3.dist-info → pyrad-2.5.0.dist-info}/METADATA +44 -20
  45. pyrad-2.5.0.dist-info/RECORD +51 -0
  46. {pyrad-2.3.dist-info → pyrad-2.5.0.dist-info}/WHEEL +1 -1
  47. {pyrad-2.3.dist-info → pyrad-2.5.0.dist-info/licenses}/LICENSE.txt +2 -1
  48. pyrad-2.5.0.dist-info/top_level.txt +3 -0
  49. pyrad/tests/testPacket.py +0 -530
  50. pyrad/tests/testTools.py +0 -122
  51. pyrad-2.3.dist-info/RECORD +0 -29
  52. pyrad-2.3.dist-info/top_level.txt +0 -1
  53. {pyrad-2.3.dist-info → pyrad-2.5.0.dist-info}/zip-safe +0 -0
@@ -1,29 +0,0 @@
1
- pyrad/__init__.py,sha256=syy5uFPFdrWfmoYnBlyFGrwgeJ1vNd1994MwI04m0XY,1433
2
- pyrad/bidict.py,sha256=wgSr6odl-sYqkHrAFvCqRPjKOPpck4tZ-YxXivmPLsQ,870
3
- pyrad/client.py,sha256=w2k4_7KT2H1fKXao8krwxZxcGT1XUwthK60MedOzOg4,6317
4
- pyrad/client_async.py,sha256=MEjqOkhzvDqPFrIB_6msbsBgQqJbaqDN7tfNXljLdTs,14307
5
- pyrad/curved.py,sha256=PbtHrJjk9S5BBSF9jmDvOMZKkaJcbAaICodTQpqDbBg,2204
6
- pyrad/dictfile.py,sha256=4Uk2o7sl87ajTDe5Vng3xbM8z4p-sn0SRjD35o5HaGs,2927
7
- pyrad/dictionary.py,sha256=jvG8K249aRCVOKrAL4r900g_us-FtFr5vpqhQCCepYU,14041
8
- pyrad/host.py,sha256=a_yC3cdOEsyD-NhVNYGYv40nkKANDLXu0OJ9wy7CVg8,3627
9
- pyrad/packet.py,sha256=_fdb6f94kZuXW79mTYGsMLijkyV9TbzDT1G1Qhgjsmw,31983
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=HBxy6zK4GQoZVKQyONdXYtIxC5UoIrCr81kkI5sY_yg,11901
13
- pyrad/tools.py,sha256=Vq7F_bHJO0T0AVSM8TC6dH6jc_NbaQMU63t_lp8OarA,7061
14
- pyrad/tests/__init__.py,sha256=g1gyuBFBrVBVZtdWKG3jkGw9lRKb1f2-_ApeEBsL7ww,94
15
- pyrad/tests/mock.py,sha256=PhIJ5oITSx3NxCRnVNWc3tFA81RhR4ddrfjwhA2cyd8,3114
16
- pyrad/tests/testBidict.py,sha256=722ukHlpS8OX162rC10EYJFOALNst8qOtRKT9JSr_Cc,2259
17
- pyrad/tests/testClient.py,sha256=iFcMS6deitF-gKsEO-5DcQtSaab-Fs9izhOeb6TS_mw,6768
18
- pyrad/tests/testDictionary.py,sha256=TNNKOGFJ23OXrUdoxwBb8DwSSzV5-YZnMrjU3a5K7l0,12722
19
- pyrad/tests/testHost.py,sha256=wVgr8aPVbkWvr3V0HTPQnU7gVYGO93npjCdBX1ls-ao,2597
20
- pyrad/tests/testPacket.py,sha256=Cg47hqqpaLU3hV2pa7jSUSRpmQqECXW65cllpSFQRfE,20959
21
- pyrad/tests/testProxy.py,sha256=dsOGlWm4XfBi6SF0aHxxKdv4dSFSOv17-YdiM-p-dXY,3009
22
- pyrad/tests/testServer.py,sha256=nclE-G61zPp-je3IHnOO5c6-bXAAE0Y9NW6fgN-e5_4,11315
23
- pyrad/tests/testTools.py,sha256=lKLBZ2YaRmjOf3qYb-nkTRaD4w3D20-aNL9ZZYPmCE4,4430
24
- pyrad-2.3.dist-info/LICENSE.txt,sha256=4JlOYdqMMd6LYQMTGkQSL2H18oNc0G_t11fadk8tCBQ,1609
25
- pyrad-2.3.dist-info/METADATA,sha256=zcUv053eTuB0akg-ES9-g7SWCbAEOBszbenh8Zx_B_M,3422
26
- pyrad-2.3.dist-info/WHEEL,sha256=g4nMs7d-Xl9-xC9XovUrsDHGXt-FT0E17Yqo92DEfvY,92
27
- pyrad-2.3.dist-info/top_level.txt,sha256=bys1IN1zmqkdz2TVOY6Jq_3NL2vMy6CJ6vaZcczR6cQ,6
28
- pyrad-2.3.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
29
- pyrad-2.3.dist-info/RECORD,,
@@ -1 +0,0 @@
1
- pyrad
File without changes