Rolling to version 0.4.1.

git-svn-id: https://tftpy.svn.sourceforge.net/svnroot/tftpy/trunk@56 63283fd4-ec1e-0410-9879-cb7f675518da
This commit is contained in:
msoulier 2006-12-17 17:09:26 +00:00
parent 95b6a72576
commit efd248f9c9
3 changed files with 7 additions and 120 deletions

120
ChangeLog
View file

@ -1,119 +1 @@
------------------------------------------------------------------------
r47 | msoulier | 2006-12-15 18:35:48 -0500 (Fri, 15 Dec 2006) | 1 line
Making server exit gracefully.
------------------------------------------------------------------------
r46 | msoulier | 2006-12-14 23:08:20 -0500 (Thu, 14 Dec 2006) | 1 line
Tweak to EOF handling in server.
------------------------------------------------------------------------
r45 | msoulier | 2006-12-14 23:01:05 -0500 (Thu, 14 Dec 2006) | 2 lines
First working server tests with two clients.
------------------------------------------------------------------------
r44 | msoulier | 2006-12-14 22:04:40 -0500 (Thu, 14 Dec 2006) | 3 lines
Added lots in the server to support a download, with timeouts.
Not yet tested with a client, but the damn thing runs.
------------------------------------------------------------------------
r43 | msoulier | 2006-12-14 19:44:33 -0500 (Thu, 14 Dec 2006) | 1 line
Fixed a bug in handling block number rollovers.
------------------------------------------------------------------------
r42 | msoulier | 2006-12-13 21:45:18 -0500 (Wed, 13 Dec 2006) | 2 lines
Got handling of file not found working in server.
------------------------------------------------------------------------
r40 | msoulier | 2006-12-13 21:29:46 -0500 (Wed, 13 Dec 2006) | 1 line
Successful test on basic select loop
------------------------------------------------------------------------
r39 | msoulier | 2006-12-10 21:59:19 -0500 (Sun, 10 Dec 2006) | 3 lines
Added some security checks around the tftproot.
Further fleshed-out the handler. Still not actually starting the transfer.
------------------------------------------------------------------------
r38 | msoulier | 2006-12-10 18:23:59 -0500 (Sun, 10 Dec 2006) | 1 line
Fleshing out server handler implementation.
------------------------------------------------------------------------
r37 | msoulier | 2006-12-10 14:12:43 -0500 (Sun, 10 Dec 2006) | 1 line
Started on the server
------------------------------------------------------------------------
r31 | msoulier | 2006-12-08 20:11:39 -0500 (Fri, 08 Dec 2006) | 1 line
Changed the port variables to something more intelligent.
------------------------------------------------------------------------
r30 | msoulier | 2006-12-08 19:45:37 -0500 (Fri, 08 Dec 2006) | 1 line
Fixing poor TID implementation.
------------------------------------------------------------------------
r28 | msoulier | 2006-10-12 21:54:56 -0400 (Thu, 12 Oct 2006) | 1 line
Implemented retries on download timeouts.
------------------------------------------------------------------------
r27 | msoulier | 2006-10-12 21:38:33 -0400 (Thu, 12 Oct 2006) | 1 line
Added some info statements regarding option negotiation.
------------------------------------------------------------------------
r26 | msoulier | 2006-10-12 21:27:30 -0400 (Thu, 12 Oct 2006) | 1 line
Updated testcases, fixed one error in decode_options
------------------------------------------------------------------------
r25 | msoulier | 2006-10-10 23:58:39 -0400 (Tue, 10 Oct 2006) | 1 line
Updated testcases
------------------------------------------------------------------------
r20 | msoulier | 2006-10-08 22:44:27 -0400 (Sun, 08 Oct 2006) | 2 lines
Fixed broken decode, and adjusted the client options.
------------------------------------------------------------------------
r19 | msoulier | 2006-10-08 09:58:41 -0400 (Sun, 08 Oct 2006) | 1 line
Starting on unit tests
------------------------------------------------------------------------
r13 | msoulier | 2006-10-05 10:18:16 -0400 (Thu, 05 Oct 2006) | 1 line
Fixed poor EOF detection
------------------------------------------------------------------------
r12 | msoulier | 2006-10-04 23:38:28 -0400 (Wed, 04 Oct 2006) | 2 lines
Got variable blocksizes working.
------------------------------------------------------------------------
r11 | msoulier | 2006-10-04 18:16:26 -0400 (Wed, 04 Oct 2006) | 1 line
Added confirmation of incoming traffic to known remote host.
------------------------------------------------------------------------
r10 | msoulier | 2006-10-04 13:32:05 -0400 (Wed, 04 Oct 2006) | 1 line
Restructured in preparation for tftp options
------------------------------------------------------------------------
r7 | msoulier | 2006-10-03 23:02:16 -0400 (Tue, 03 Oct 2006) | 1 line
Added seconds to logs
------------------------------------------------------------------------
r5 | msoulier | 2006-10-03 22:43:05 -0400 (Tue, 03 Oct 2006) | 2 lines
Added OACK packet, and factored-out client code.
------------------------------------------------------------------------
r4 | msoulier | 2006-10-03 15:13:27 -0400 (Tue, 03 Oct 2006) | 1 line
Updated a comment
------------------------------------------------------------------------
r3 | msoulier | 2006-10-03 15:11:18 -0400 (Tue, 03 Oct 2006) | 1 line
Restructuring
------------------------------------------------------------------------
r1 | msoulier | 2006-10-03 15:08:47 -0400 (Tue, 03 Oct 2006) | 2 lines
Initial import.
------------------------------------------------------------------------
See http://tftpy.svn.sourceforge.net/viewvc/tftpy/.

5
README
View file

@ -1,5 +1,10 @@
Copyright, Michael P. Soulier, 2006.
About Release 0.4.1:
====================
Bugfix release to fix the installation path, with some restructuring into a
tftpy package from the single module used previously.
About Release 0.4:
==================
This release adds a TftpServer class with a sample implementation in bin.

View file

@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='tftpy',
version='0.5',
version='0.4.1',
description='Python TFTP library',
author='Michael P. Soulier',
author_email='msoulier@digitaltorque.ca',