| | 28 | |
| | 29 | |
| | 30 | Version 0.9 |
| | 31 | =========== |
| | 32 | |
| | 33 | * Start using trac to manage the project: http://code.wiggy.net/tracker/pyrad/ |
| | 34 | |
| | 35 | * [bug 3] Fix handling of packets with an id of 0 |
| | 36 | |
| | 37 | * [bug 2] Fix handling of file descriptor parameters in the server |
| | 38 | code and example. |
| | 39 | |
| | 40 | * [bug 4] Fix wrong variable name in exception raised when encountering |
| | 41 | an overly long packet. |
| | 42 | |
| | 43 | * [bug 5] Fix error message in parse error for dictionaries. |
| | 44 | |
| | 45 | * [bug 8] Packet.CreateAuthenticator is now a static method. |
| | 46 | |
| | 47 | |
| | 48 | Version 0.8 |
| | 49 | =========== |
| | 50 | |
| | 51 | * Fix time-handling in the client packet sending code: it would loop |
| | 52 | forever since the now time was updated at the wrong moment. Fix from |
| | 53 | Michael Mitchell <Michael.Mitchell@team.telstra.com> |
| | 54 | |
| | 55 | * Fix passing of dict parameter when creating reply packets |
| | 56 | |
| | 57 | |
| | 58 | Version 0.7 |
| | 59 | =========== |
| | 60 | |
| | 61 | * add HandleAuthPacket and HandleAcctPacket hooks to Server class. |
| | 62 | Request from Thomas Boettcher. |
| | 63 | |
| | 64 | * Pass on dict attribute when creating a reply packet. Requested by |
| | 65 | Thomas Boettcher. |
| | 66 | |
| | 67 | * Allow specififying new attributes when using |
| | 68 | Server.CreateReplyPacket. Requested by Thomas Boettcher. |
| | 69 | |
| | 70 | |
| | 71 | Version 0.6 |
| | 72 | =========== |
| | 73 | |
| | 74 | * packet.VerifyReply() had a syntax error when not called with a raw packet. |
| | 75 | |
| | 76 | * Add bind() method to the Client class. |
| | 77 | |
| | 78 | * [SECURITY] Fix handling of timeouts in client module: when a bad |
| | 79 | packet was received pyrad immediately started the next retry instead of |
| | 80 | discarding it and waiting for a timeout. This could be exploited by |
| | 81 | sending a number of bogus responses before a correct reply to make pyrad |
| | 82 | not see the real response. |
| | 83 | |
| | 84 | * correctly set Acct-Delay-Time when resending accounting requests packets. |
| | 85 | |
| | 86 | * verify account request packages as well (from Farshad Khoshkhui). |
| | 87 | |
| | 88 | * protect against packets with bogus lengths (from Farshad Khoshkhui). |
| | 89 | |
| | 90 | |
| | 91 | Version 0.5 |
| | 92 | =========== |
| | 93 | |
| | 94 | * Fix typo in server class which broke handling of accounting packets. |
| | 95 | |
| | 96 | * Create seperate AuthPacket and AcctPacket classes; this resulted in |
| | 97 | a fair number of API changes. |
| | 98 | |
| | 99 | * Packets now know how to create and verify replies. |
| | 100 | |
| | 101 | * Client now directs authentication and accounting packets to the |
| | 102 | correct port on the server. |
| | 103 | |
| | 104 | * Add twisted support via the new curved module. |
| | 105 | |
| | 106 | * Fix incorrect exception handling in client code. |
| | 107 | |
| | 108 | * Update example server to handle accounting packets. |
| | 109 | |
| | 110 | * Add example for sending account packets. |
| | 111 | |
| | 112 | |
| | 113 | Version 0.4 |
| | 114 | =========== |
| | 115 | |
| | 116 | * Fix last case of bogus exception usage. |
| | 117 | |
| | 118 | * Move RADIUS code constants to packet module. |
| | 119 | |
| | 120 | * Add support for decoding passwords and generating reply packets to Packet |
| | 121 | class. |
| | 122 | |
| | 123 | * Add basic RADIUS server and proxy implementation. |
| | 124 | |
| | 125 | |
| | 126 | Version 0.3 |
| | 127 | =========== |
| | 128 | |
| | 129 | * client.Timeout is now derived from Exception. |
| | 130 | |
| | 131 | * Docstring documentation added. |
| | 132 | |
| | 133 | * Include example dictionaries and authentication script. |
| | 134 | |
| | 135 | |
| | 136 | Version 0.2 |
| | 137 | =========== |
| | 138 | |
| | 139 | * Use proper exceptions. |
| | 140 | |
| | 141 | * Encode and decode vendor attributes. |
| | 142 | |
| | 143 | * Dictionary can parse vendor dictionaries. |
| | 144 | |
| | 145 | * Dictionary can handle attribute values. |
| | 146 | |
| | 147 | * Enhance most constructors; they now take extra optional parameters |
| | 148 | with initialisation info. |
| | 149 | |
| | 150 | * No longer use obsolete python interfaces like whrandom. |
| | 151 | |
| | 152 | |
| | 153 | Version 0.1 |
| | 154 | =========== |
| | 155 | |
| | 156 | * First release |