Network/UDPCat: Add udpcat utility
g0dil [Wed, 13 May 2009 13:33:24 +0000 (13:33 +0000)]
SConstruct [new file with mode: 0644]
udpcat.cc [new file with mode: 0644]

diff --git a/SConstruct b/SConstruct
new file mode 100644 (file)
index 0000000..e5bd45e
--- /dev/null
@@ -0,0 +1,34 @@
+import sys
+sys.path.extend(('senf/senfscons','/usr/lib/senf/senfscons'))
+try:
+    import os.path, glob, senfutil
+except ImportError:
+    print "\nModule import failed. 'senf' symlink missing?\n"
+    raise
+
+env = Environment()
+
+senfutil.SetupForSENF( env )
+
+env.Append(
+
+    LIBS            = [ ],
+    CXXFLAGS        = [ '-Wall', '-Woverloaded-virtual' ],
+    LINKFLAGS       = [ ],
+
+    CXXFLAGS_debug  = [ ],
+    LINKFLAGS_debug = [ ],
+    LOGLEVELS_debug = [ 'senf::log::Debug||VERBOSE' ],
+
+    CXXFLAGS_final  = [ '-O3' ],
+    LINKFLAGS_final = [ ],
+    LOGLEVELS_final = [ ],
+
+    SENF_BUILDOPTS  = [ ],
+
+)
+
+env.Default(
+    env.Program( target = 'udpcat',
+                 source = glob.glob('*.cc') )
+)
diff --git a/udpcat.cc b/udpcat.cc
new file mode 100644 (file)
index 0000000..0b9d85c
--- /dev/null
+++ b/udpcat.cc
@@ -0,0 +1,58 @@
+// $Id$
+//
+// Copyright (C) 2009 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
+//     Stefan Bund <g0dil@berlios.de>
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the
+// Free Software Foundation, Inc.,
+// 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+
+/** \file
+    \brief udpcat non-inline non-template implementation */
+
+//#include "udpcat.hh"
+//#include "udpcat.ih"
+
+// Custom includes
+#include <senf/Socket/Protocols/INet/UDPSocketHandle.hh>
+
+//#include "udpcat.mpp"
+#define prefix_
+///////////////////////////////cc.p////////////////////////////////////////
+
+int main(int argc, char ** argv)
+{
+    senf::UDPv4ClientSocketHandle handle (
+        senf::INet4SocketAddress(boost::lexical_cast<unsigned>(std::string(argv[1]))));
+    
+    for (;;)
+        std::cout << handle.read() << std::flush;
+}
+
+///////////////////////////////cc.e////////////////////////////////////////
+#undef prefix_
+//#include "udpcat.mpp"
+
+\f
+// Local Variables:
+// mode: c++
+// fill-column: 100
+// comment-column: 40
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
+// compile-command: "scons -u"
+// End: