switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / Examples / UDPClientServer / udpServer.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28
29 // Custom includes
30 #include <string>
31 #include <senf/Socket/Protocols/INet.hh>
32 #include <senf/Scheduler/Scheduler.hh>
33 #include <senf/Utils/membind.hh>
34
35 class Server
36 {
37     senf::UDPv4ClientSocketHandle serverSock;
38     senf::scheduler::FdEvent event;
39
40 public:
41     Server(senf::INet4Address const & host, unsigned int port)
42         : serverSock(senf::INet4SocketAddress(host, port)),
43           event("UDPv4ClientServer", senf::membind(&Server::readFromClient, this),
44                 serverSock, senf::scheduler::FdEvent::EV_READ, false)
45         {}
46
47     void run()
48     {
49         event.enable();
50         senf::scheduler::process();
51     }
52
53 private:
54     void readFromClient(int event)
55     {
56         std::string data (serverSock.read());
57         std::cout << "> " << data<<std::endl ;
58     }
59 };
60
61 int main(int argc, char const * argv[])
62 {
63     try {
64         Server testSock(senf::INet4Address::Loopback, 4243);
65         testSock.run();
66     }
67
68     catch (std::exception const & ex) {
69         std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
70     }
71     return 0;
72 }
73
74 \f
75 // Local Variables:
76 // mode: c++
77 // fill-column: 100
78 // comment-column: 40
79 // c-file-style: "senf"
80 // indent-tabs-mode: nil
81 // ispell-local-dictionary: "american"
82 // compile-command: "scons -u"
83 // End: