Changeset 1084
- Timestamp:
- 09/16/07 01:38:20 (14 months ago)
- Location:
- trunk/pyrad
- Files:
-
- 7 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/pyrad/__init__.py
r1008 r1084 41 41 __author__ = "Wichert Akkerman <wichert@wiggy.net>" 42 42 __url__ = "http://www.wiggy.net/code/pyrad.xhtml" 43 __copyright__ = "Copyright 2002 ,2003Wichert Akkerman"43 __copyright__ = "Copyright 2002-2007 Wichert Akkerman" 44 44 45 45 __all__ = [ "client", "dictionary", "packet", "server", "tools" ] -
trunk/pyrad/client.py
r1077 r1084 1 1 # client.py 2 2 # 3 # Copyright 2002 ,2003,2004Wichert Akkerman <wichert@wiggy.net>3 # Copyright 2002-2007 Wichert Akkerman <wichert@wiggy.net> 4 4 5 5 """Generic RADIUS client""" -
trunk/pyrad/dictionary.py
r1032 r1084 1 1 # dictionary.py 2 2 # 3 # Copyright 2002,2005 Wichert Akkerman <wichert@wiggy.net>3 # Copyright 2002,2005,2007 Wichert Akkerman <wichert@wiggy.net> 4 4 5 5 """RADIUS dictionary -
trunk/pyrad/host.py
r1058 r1084 1 1 # host.py 2 2 # 3 # Copyright 2003 Wichert Akkerman <wichert@wiggy.net>3 # Copyright 2003,2007 Wichert Akkerman <wichert@wiggy.net> 4 4 5 5 from pyrad import packet -
trunk/pyrad/packet.py
r1057 r1084 1 1 # packet.py 2 2 # 3 # Copyright 2002-2005 Wichert Akkerman <wichert@wiggy.net>3 # Copyright 2002-2005,2007 Wichert Akkerman <wichert@wiggy.net> 4 4 # 5 5 # A RADIUS packet as defined in RFC 2138 -
trunk/pyrad/proxy.py
r1078 r1084 1 # proxy.py 2 # 3 # Copyright 2005,2007 Wichert Akkerman <wichert@wiggy.net> 4 # 5 # A RADIUS proxy as defined in RFC 2138 6 1 7 from pyrad.server import ServerPacketError 2 8 from pyrad.server import Server -
trunk/pyrad/server.py
r1075 r1084 1 1 # server.py 2 2 # 3 # Copyright 2003-2004 Wichert Akkerman <wichert@wiggy.net>3 # Copyright 2003-2004,2007 Wichert Akkerman <wichert@wiggy.net> 4 4 5 5 """Generic RADIUS server and proxy