Index: /trunk/BNC/bncpostprocess.cpp
===================================================================
--- /trunk/BNC/bncpostprocess.cpp	(revision 3642)
+++ /trunk/BNC/bncpostprocess.cpp	(revision 3643)
@@ -43,4 +43,5 @@
 #include "bncsettings.h"
 #include "pppopt.h"
+#include "bncpppclient.h"
 
 using namespace std;
@@ -57,4 +58,5 @@
   cout << "~t_postProcessing" << endl;
   delete _opt;
+  delete _pppClient;
 }
 
@@ -62,4 +64,8 @@
 ////////////////////////////////////////////////////////////////////////////
 void t_postProcessing::run() {
+
+  if (!_pppClient) {
+    _pppClient = new bncPPPclient("POST", _opt, false);
+  }
 
   cout << "obsFile: "  << _opt->obsFileName.toAscii().data()  << endl;
Index: /trunk/BNC/bncpostprocess.h
===================================================================
--- /trunk/BNC/bncpostprocess.h	(revision 3642)
+++ /trunk/BNC/bncpostprocess.h	(revision 3643)
@@ -30,4 +30,5 @@
 
 class t_pppOpt;
+class bncPPPclient;
 
 class t_postProcessing : public QThread {
@@ -48,5 +49,6 @@
  
  private:
-  t_pppOpt* _opt;
+  t_pppOpt*     _opt;
+  bncPPPclient* _pppClient;
 };
 
