]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/example/cpp03/tutorial/daytime5/server.cpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / tutorial / daytime5 / server.cpp
CommitLineData
7c673cae
FG
1//
2// server.cpp
3// ~~~~~~~~~~
4//
b32b8144 5// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
6//
7// Distributed under the Boost Software License, Version 1.0. (See accompanying
8// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9//
10
11#include <ctime>
12#include <iostream>
13#include <string>
14#include <boost/array.hpp>
15#include <boost/asio.hpp>
16
17using boost::asio::ip::udp;
18
19std::string make_daytime_string()
20{
21 using namespace std; // For time_t, time and ctime;
22 time_t now = time(0);
23 return ctime(&now);
24}
25
26int main()
27{
28 try
29 {
b32b8144 30 boost::asio::io_context io_context;
7c673cae 31
b32b8144 32 udp::socket socket(io_context, udp::endpoint(udp::v4(), 13));
7c673cae
FG
33
34 for (;;)
35 {
36 boost::array<char, 1> recv_buf;
37 udp::endpoint remote_endpoint;
38 boost::system::error_code error;
b32b8144 39 socket.receive_from(boost::asio::buffer(recv_buf), remote_endpoint);
7c673cae
FG
40
41 std::string message = make_daytime_string();
42
43 boost::system::error_code ignored_error;
44 socket.send_to(boost::asio::buffer(message),
45 remote_endpoint, 0, ignored_error);
46 }
47 }
48 catch (std::exception& e)
49 {
50 std::cerr << e.what() << std::endl;
51 }
52
53 return 0;
54}