Changeset 1084

Show
Ignore:
Timestamp:
09/16/07 01:38:20 (14 months ago)
Author:
wichert
Message:

Copyright updates

Location:
trunk/pyrad
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • trunk/pyrad/__init__.py

    r1008 r1084  
    4141__author__      = "Wichert Akkerman <wichert@wiggy.net>" 
    4242__url__         = "http://www.wiggy.net/code/pyrad.xhtml" 
    43 __copyright__   = "Copyright 2002,2003 Wichert Akkerman" 
     43__copyright__   = "Copyright 2002-2007 Wichert Akkerman" 
    4444 
    4545__all__ = [ "client", "dictionary", "packet", "server", "tools" ] 
  • trunk/pyrad/client.py

    r1077 r1084  
    11# client.py 
    22# 
    3 # Copyright 2002,2003,2004 Wichert Akkerman <wichert@wiggy.net> 
     3# Copyright 2002-2007 Wichert Akkerman <wichert@wiggy.net> 
    44 
    55"""Generic RADIUS client""" 
  • trunk/pyrad/dictionary.py

    r1032 r1084  
    11# dictionary.py 
    22# 
    3 # Copyright 2002,2005 Wichert Akkerman <wichert@wiggy.net> 
     3# Copyright 2002,2005,2007 Wichert Akkerman <wichert@wiggy.net> 
    44 
    55"""RADIUS dictionary 
  • trunk/pyrad/host.py

    r1058 r1084  
    11# host.py 
    22# 
    3 # Copyright 2003 Wichert Akkerman <wichert@wiggy.net> 
     3# Copyright 2003,2007 Wichert Akkerman <wichert@wiggy.net> 
    44 
    55from pyrad import packet 
  • trunk/pyrad/packet.py

    r1057 r1084  
    11# packet.py 
    22#  
    3 # Copyright 2002-2005 Wichert Akkerman <wichert@wiggy.net> 
     3# Copyright 2002-2005,2007 Wichert Akkerman <wichert@wiggy.net> 
    44# 
    55# 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 
    17from pyrad.server import ServerPacketError 
    28from pyrad.server import Server 
  • trunk/pyrad/server.py

    r1075 r1084  
    11# server.py 
    22# 
    3 # Copyright 2003-2004 Wichert Akkerman <wichert@wiggy.net> 
     3# Copyright 2003-2004,2007 Wichert Akkerman <wichert@wiggy.net> 
    44 
    55"""Generic RADIUS server and proxy