fixed static address in example to argv[]
pug [Fri, 22 Feb 2008 12:58:06 +0000 (12:58 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@709 270642c3-0616-0410-b53a-bc976706d245

Examples/UDPClientServer/Mainpage.dox
Examples/UDPClientServer/udpClient.cc

index b362404..4ad2824 100644 (file)
 
     First a \c ::UDPv4ClientSocketHandle is created. With the function
     \c writeto(senf::INet4SocketAddress, string) the string s will be written to the specified
-    address and port, which is constructed here from a  static string \c "127.0.0.1:4243". In this
+    address and port, which is constructed here from a  static string read from the console with the format \c IP:PORT. In this
     example Integers from zero to ten are send to the Server socket.
 
     The exception handling is again the same as with the server application.
index 59776ec..61a103e 100644 (file)
@@ -33,7 +33,7 @@ int main(int argc, char const * argv[])
             senf::UDPv4ClientSocketHandle sock;
             std::stringstream s;
             s << i;
-            sock.writeto(senf::INet4SocketAddress("127.0.0.1:4243"),s.str());
+            sock.writeto(senf::INet4SocketAddress(argv[1]),s.str());
             std::cout << i << std::endl;
         }
     }