fbc16e4b89b4c664d8201191502ceedc13538f24
[senf.git] / Examples / UDPClientServer / udpServer.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 // Custom includes
24 #include <string>
25 #include <senf/Socket/Protocols/INet.hh>
26 #include <senf/Scheduler/Scheduler.hh>
27 #include <senf/Utils/membind.hh>
28
29 class Server
30 {
31     senf::UDPv4ClientSocketHandle serverSock;
32     senf::scheduler::FdEvent event;
33
34 public:
35     Server(senf::INet4Address const & host, unsigned int port)
36         : serverSock(senf::INet4SocketAddress(host, port)),
37           event("UDPv4ClientServer", senf::membind(&Server::readFromClient, this),
38                 serverSock, senf::scheduler::FdEvent::EV_READ, false)
39         {}
40
41     void run()
42     {
43         event.enable();
44         senf::scheduler::process();
45     }
46
47 private:
48     void readFromClient(int event)
49     {
50         std::string data (serverSock.read());
51         std::cout << "> " << data<<std::endl ;
52     }
53 };
54
55 int main(int argc, char const * argv[])
56 {
57     try {
58         Server testSock(senf::INet4Address::Loopback, 4243);
59         testSock.run();
60     }
61
62     catch (std::exception const & ex) {
63         std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
64     }
65     return 0;
66 }
67
68 \f
69 // Local Variables:
70 // mode: c++
71 // fill-column: 100
72 // comment-column: 40
73 // c-file-style: "senf"
74 // indent-tabs-mode: nil
75 // ispell-local-dictionary: "american"
76 // compile-command: "scons -u"
77 // End: