[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[minion-cvs] Batch of changes for 0.0.3rc1
Update of /home/minion/cvsroot/src/minion/lib/mixminion/server
In directory moria.mit.edu:/tmp/cvs-serv18039/lib/mixminion/server
Modified Files:
ServerMain.py
Log Message:
Batch of changes for 0.0.3rc1
README:
- Document changes and new features in 0.0.3
setup.py:
- Bump version number to 0.0.3rc1
ClientMain:
- Change directory URL, so that 0.0.3 clients will look for a
directory at a different place.
- Add support for recommended versions
- Update directory cache format
- Finish documentation
- Notice early if we have no unused SURBs
Main:
- Fix bug in 'mixminion version'.
Packet:
- Increment packet version number
ServerInfo, ServerList:
- Add 'Recommended-Software' section to directories.
test:
- Temporarily disable testStallingTransmission
- Add test for counter mode consistency
ServerMain:
- documentation
aes_ctr.c:
- Break backward compatibility by fixing bug in counter mode.
Index: ServerMain.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/server/ServerMain.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- ServerMain.py 13 Feb 2003 07:03:50 -0000 1.39
+++ ServerMain.py 13 Feb 2003 10:56:40 -0000 1.40
@@ -699,7 +699,9 @@
def runServer(cmd, args):
config = configFromServerArgs(cmd, args)
try:
- #DOCDOC
+ # Configure the log, but delay disabling stderr until the last
+ # possible minute; we want to keep echoing to the terminal until
+ # the main loop starts.
mixminion.Common.LOG.configure(config, keepStderr=1)
LOG.debug("Configuring server")
except: