Fix bug with parameters
authorEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Mon, 25 May 2015 01:10:38 +0000 (03:10 +0200)
committerEduardo Ramos Testillano <eduardo.ramos.testillano@ericsson.com>
Mon, 25 May 2015 01:10:38 +0000 (03:10 +0200)
example/diameter/launcher/Launcher.cpp

index edb1de0..f377e91 100644 (file)
@@ -1019,21 +1019,21 @@ std::string Launcher::help() const throw() {
   result += "\n (we will talk later about this great feature). Some of the more common parameters are:";
   result += "\n";
   result += "\nAs mandatory, the stack definition given through the xml dictionary:";
-  result += "\n   -dictionary <path to dictionary file>";
+  result += "\n   --dictionary <path to dictionary file>";
   result += "\n";
   result += "\nActing as a diameter server (accepting i.e. 10 connections), you would have:";
-  result += "\n   -diameterServer localhost:3868 -diameterServerSessions 10 -entityServerSessions 0";
+  result += "\n   --diameterServer localhost:3868 --diameterServerSessions 10 --entityServerSessions 0";
   result += "\n";
   result += "\nActing as a diameter client (launching i.e. 10 connections to each entity server), you would have:";
-  result += "\n   -entity 192.168.12.11:3868,192.168.12.21:3868 -entityServerSessions 10 -diameterServerSessions 0";
+  result += "\n   --entity 192.168.12.11:3868,192.168.12.21:3868 --entityServerSessions 10 --diameterServerSessions 0";
   result += "\n";
   result += "\nIf you act as a proxy or a translation agent, you need to combine both former setups, and probably";
   result += "\n will need to program the answers to be replied through the operations interface. To balance the";
-  result += "\n traffic at your client side you shall use '-balance' and '-sessionBasedModelsClientSocketSelection'";
+  result += "\n traffic at your client side you shall use '--balance' and '--sessionBasedModelsClientSocketSelection'";
   result += "\n arguments in order to define the balancing behaviour.";
   result += "\n";
   result += "\nThe process builds automatically CER and DWR messages as a client, but you could specify your own";
-  result += "\n customized ones using '-cer <xml message file>' and '-dwr <xml message file>'.";
+  result += "\n customized ones using '--cer <xml message file>' and '--dwr <xml message file>'.";
   result += "\nThe process builds automatically CEA and DWA messages as a server, but you could program your own";
   result += "\n customized ones using operations interface.";
   result += "\n";