Index: /trunk/BNS/bns.cpp
===================================================================
--- /trunk/BNS/bns.cpp	(revision 2331)
+++ /trunk/BNS/bns.cpp	(revision 2332)
@@ -82,5 +82,5 @@
   // Socket and file for outputting the results
   // -------------------------------------------
-  for (int ic = 1; ic <= 3; ic++) {
+  for (int ic = 1; ic <= 6; ic++) {
     QString mountpoint  = settings.value(QString("mountpoint_%1").arg(ic)).toString();
     QString outFileName = settings.value(QString("outFile_%1").arg(ic)).toString();
@@ -519,4 +519,7 @@
             if (_caster.at(ic)->ic() == 2) { emit(newOutBytes2(len));}
             if (_caster.at(ic)->ic() == 3) { emit(newOutBytes3(len));}
+            if (_caster.at(ic)->ic() == 4) { emit(newOutBytes4(len));}
+            if (_caster.at(ic)->ic() == 5) { emit(newOutBytes5(len));}
+            if (_caster.at(ic)->ic() == 6) { emit(newOutBytes6(len));}
             _caster.at(ic)->write(obuffer, len);
           }
Index: /trunk/BNS/bns.h
===================================================================
--- /trunk/BNS/bns.h	(revision 2331)
+++ /trunk/BNS/bns.h	(revision 2332)
@@ -46,4 +46,7 @@
   void newOutBytes2(int nBytes);
   void newOutBytes3(int nBytes);
+  void newOutBytes4(int nBytes);
+  void newOutBytes5(int nBytes);
+  void newOutBytes6(int nBytes);
   void newOutEphBytes(int nBytes);
   void newMessage(const QByteArray msg);
Index: /trunk/BNS/bnswindow.cpp
===================================================================
--- /trunk/BNS/bnswindow.cpp	(revision 2331)
+++ /trunk/BNS/bnswindow.cpp	(revision 2332)
@@ -1132,4 +1132,7 @@
   connect(_bns, SIGNAL(newOutBytes2(int)), this, SLOT(slotOutBytes2(int)));
   connect(_bns, SIGNAL(newOutBytes3(int)), this, SLOT(slotOutBytes3(int)));
+  connect(_bns, SIGNAL(newOutBytes4(int)), this, SLOT(slotOutBytes4(int)));
+  connect(_bns, SIGNAL(newOutBytes5(int)), this, SLOT(slotOutBytes5(int)));
+  connect(_bns, SIGNAL(newOutBytes6(int)), this, SLOT(slotOutBytes6(int)));
   connect(_bns, SIGNAL(newOutEphBytes(int)), this, SLOT(slotOutEphBytes(int)));
 
@@ -1154,6 +1157,15 @@
   updateStatus(4, nBytes);
 }
+void bnsWindow::slotOutBytes4(int nBytes) {
+  updateStatus(5, nBytes);
+}
+void bnsWindow::slotOutBytes5(int nBytes) {
+  updateStatus(6, nBytes);
+}
+void bnsWindow::slotOutBytes6(int nBytes) {
+  updateStatus(7, nBytes);
+}
 void bnsWindow::slotOutEphBytes(int nBytes) {
-  updateStatus(5, nBytes);
+  updateStatus(8, nBytes);
 }
 
Index: /trunk/BNS/bnswindow.h
===================================================================
--- /trunk/BNS/bnswindow.h	(revision 2331)
+++ /trunk/BNS/bnswindow.h	(revision 2332)
@@ -50,4 +50,7 @@
   void slotOutBytes2(int nBytes);
   void slotOutBytes3(int nBytes);
+  void slotOutBytes4(int nBytes);
+  void slotOutBytes5(int nBytes);
+  void slotOutBytes6(int nBytes);
   void slotOutEphBytes(int nBytes);
 
