[csmaild-cvs] csmaild/src/Common/NetworkManager Connection.cs,1.2,1.3
Brought to you by:
tamc
|
From: <ta...@us...> - 2003-08-08 22:39:29
|
Update of /cvsroot/csmaild/csmaild/src/Common/NetworkManager In directory sc8-pr-cvs1:/tmp/cvs-serv18360/src/Common/NetworkManager Modified Files: Connection.cs Log Message: Updated VS.NET 2002 project files to reflect currect VS.NET 2003 project Moved message flags into a FlagList class (this makes flag extensions easier to support) Modified the TestClient for easier debugging of the server Added BASE64 decoder to common library Moved argument parsing from ImapCommand into the newly created types (representing various arguments parsed from the client) Added support for AUTHENTICATE PLAIN Added TODO document in the docs !!Some stuff surely has been broken with all this code moving around, it'll compile and run, but some functionality hasn't been verified yet!! Index: Connection.cs =================================================================== RCS file: /cvsroot/csmaild/csmaild/src/Common/NetworkManager/Connection.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Connection.cs 5 Aug 2003 01:42:09 -0000 1.2 --- Connection.cs 8 Aug 2003 22:39:26 -0000 1.3 *************** *** 126,129 **** --- 126,132 ---- mReceivedString.Remove(0, idx+2); // remove the line and the \r\n + if(line != string.Empty) + System.Diagnostics.Trace.WriteLine(ToString() + " -> " + (string)line); + return line; } |