Update of /cvsroot/csmaild/csmaild/src/TestClient/bin
In directory sc8-pr-cvs1:/tmp/cvs-serv31922/src/TestClient/bin
Modified Files:
Commands.xml
Log Message:
Modified network model to be asynchronous for idle times and synchronous during the processing of the command. This cleans up the code a bit, while still keeping some of the theoretical benefits of doing it asynchronously.
Reworked some of the argument parsing
Started work on the FETCH command
The test client got some work to, nothing significant yet.
Index: Commands.xml
===================================================================
RCS file: /cvsroot/csmaild/csmaild/src/TestClient/bin/Commands.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Commands.xml 25 Jul 2003 23:35:24 -0000 1.2
--- Commands.xml 26 Jul 2003 23:09:25 -0000 1.3
***************
*** 2,21 ****
<NewDataSet>
<Commands>
! <Command>CAPABILITY</Command>
</Commands>
<Commands>
! <Command>LOGIN csmaild_test csmaild_test</Command>
</Commands>
<Commands>
! <Command>LIST "" "*"</Command>
</Commands>
<Commands>
! <Command>LSUB "" "*"</Command>
</Commands>
<Commands>
! <Command>SELECT INBOX</Command>
</Commands>
<Commands>
! <Command>FETCH (item1 item2 (item3 item4))</Command>
</Commands>
</NewDataSet>
--- 2,35 ----
<NewDataSet>
<Commands>
! <Command>1 CAPABILITY</Command>
! <Process>True</Process>
</Commands>
<Commands>
! <Command>2 LOGIN csmaild_test csmaild_test</Command>
! <Process>False</Process>
</Commands>
<Commands>
! <Command>2 LOGIN "csmaild_test" "csmaild_test"</Command>
! <Process>True</Process>
</Commands>
<Commands>
! <Command>2 LOGIN {12}</Command>
! <Process>False</Process>
</Commands>
<Commands>
! <Command>csmaild_test {12}</Command>
! <Process>False</Process>
</Commands>
<Commands>
! <Command>csmaild_test</Command>
! <Process>False</Process>
! </Commands>
! <Commands>
! <Command>3 SELECT INBOX</Command>
! <Process>True</Process>
! </Commands>
! <Commands>
! <Command>4 FETCH 1 (BODY[HEADER.FIELDS (To From)])</Command>
! <Process>True</Process>
</Commands>
</NewDataSet>
|