Index: branches/FEPSimulator/FEPSim.cpp
===================================================================
--- branches/FEPSimulator/FEPSim.cpp	(revision 141)
+++ branches/FEPSimulator/FEPSim.cpp	(revision 148)
@@ -1,3 +1,4 @@
 #include "FEPSim.h"
+#include <time.h>
 
 FEPSim::FEPSim(char * ATMShost, int FEP_PROG, int FEP_REV, int SOCK_PORT) {
@@ -90,5 +91,5 @@
             printf("Transferring line=%d, lds_drop_no=%d...\n", lines.at(i)->lineNum, ldsMap.at(index)->drop);
             // Make RPC Call and handle response
-            printf("Handling ATMS response...\n");
+            // printf("Handling ATMS response...\n");
             handleCallResponse(fep_reply_xfer_32(&fepReply, clnt));
         }
@@ -101,6 +102,9 @@
         cout << "Destroying client..." << endl;
         clnt_destroy(clnt);
+        int startTime = time(NULL);
+        cout << "time is: " << startTime << endl;
     }
 }
+
 
 bool FEPSim::createClient() {
