Index: trunk/BNC/src/bncwindow.cpp
===================================================================
--- trunk/BNC/src/bncwindow.cpp	(revision 5643)
+++ trunk/BNC/src/bncwindow.cpp	(revision 5644)
@@ -361,4 +361,5 @@
   // ---------------------
   _miscMountLineEdit  = new QLineEdit(settings.value("miscMount").toString());
+  _miscPortLineEdit   = new QLineEdit(settings.value("miscPort").toString());
   _perfIntrComboBox   = new QComboBox();
   _perfIntrComboBox->setEditable(false);
@@ -878,4 +879,5 @@
   rLayout->setColumnMinimumWidth(0,14*ww);
   _perfIntrComboBox->setMaximumWidth(9*ww);
+  _miscPortLineEdit->setMaximumWidth(9*ww);
 
   rLayout->addWidget(new QLabel("Log latencies or scan RTCM streams for numbers of message types and antenna information."),0, 0,1,30);
@@ -886,5 +888,6 @@
   rLayout->addWidget(new QLabel("Scan RTCM"),                     3, 0);
   rLayout->addWidget(_scanRTCMCheckBox,                           3, 1);
-  rLayout->addWidget(new QLabel(" "),                             4, 0);
+  rLayout->addWidget(new QLabel("Port"),                          4, 0);
+  rLayout->addWidget(_miscPortLineEdit,                           4, 1);
   rLayout->addWidget(new QLabel(" "),                             5, 0);
   rLayout->addWidget(new QLabel(" "),                             6, 0);
@@ -1438,4 +1441,5 @@
   _rnxV3CheckBox->setWhatsThis(tr("The default format for RINEX Observation files is RINEX Version 2. Select 'Version 3' if you want to save the observations in RINEX Version 3 format."));
   _miscMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint to apply any of the options shown below. Enter 'ALL' if you want to apply these options to all configured streams.</p><p>An empty option field (default) means that you don't want BNC to apply any of these options.</p>"));
+  _miscPortLineEdit->setWhatsThis(tr("BNC can output an incoming stream on your local host through an IP port. Specify a port number here to activate this function."));
   _scanRTCMCheckBox->setWhatsThis(tr("<p>Tick 'Scan RTCM' to log the numbers of incomming message types as well as contained antenna coordinates, antenna heigt, and antenna descriptor.</p><p>In case of RTCM Version 3 MSM streams, BNC will also log contained RINEX Version 3 observation types.</p>."));
   _serialMountPointLineEdit->setWhatsThis(tr("<p>Enter a 'Mountpoint' to forward the corresponding stream to a serial connected receiver.</p>"));
@@ -1914,4 +1918,5 @@
 // Miscellaneous 
   settings.setValue("miscMount",   _miscMountLineEdit->text());
+  settings.setValue("miscPort",    _miscPortLineEdit->text());
   settings.setValue("perfIntr",    _perfIntrComboBox->currentText());
   settings.setValue("scanRTCM",    _scanRTCMCheckBox->checkState());
@@ -2454,4 +2459,5 @@
     enableWidget(enable, _perfIntrComboBox);
     enableWidget(enable, _scanRTCMCheckBox);
+    enableWidget(enable, _miscPortLineEdit);
   }
 
