set keyword-property
[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
33 public:
34     Server(senf::INet4Address const & host, unsigned int port)
35         : serverSock(senf::INet4SocketAddress(host, port)) {}
36
37     void run()
38     {
39         senf::Scheduler::instance().add(
40                 serverSock,
41                 senf::membind(&Server::readFromClient, this),
42                 senf::Scheduler::EV_READ);
43         senf::Scheduler::instance().process();
44     }
45
46 private:
47     void readFromClient(senf::Scheduler::EventId event)
48     {
49         std::string data (serverSock.read());
50         std::cout << "> " << data<<std::endl ;
51     }
52 };
53
54 int main(int argc, char const * argv[])
55 {
56     try {
57         Server testSock(senf::INet4Address::Loopback, 4243);
58         testSock.run();
59     }
60
61     catch (std::exception const & ex) {
62         std::cerr << senf::prettyName(typeid(ex)) << ": " << ex.what() << "\n";
63     }
64     return 0;
65 }