summaryrefslogtreecommitdiffstats
path: root/rtnetlink_server.hpp
blob: 0991ae0c35dbe2f2a49c1015ccb7c0aab5ed30a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma once

#include "types.hpp"
#include "util.hpp"

#include <systemd/sd-event.h>

namespace phosphor
{
namespace network
{
namespace rtnetlink
{

constexpr auto BUFSIZE = 4096;

/** General rtnetlink server which waits for the POLLIN event
    and calls the  call back once it gets the event.
    Usage would be create the server with the  call back
    and call the run method.
 */

class Server
{

    public:

        /** @brief Constructor
         *
         *  @details Sets up the server to handle incoming RTNETLINK events
         *
         *  @param[in] eventPtr - Unique ptr reference to sd_event.
         *  @param[in] socket - netlink socket.
         */
        Server(EventPtr& eventPtr, const phosphor::Descriptor& socket);

        Server() = delete;
        ~Server() = default;
        Server(const Server&) = delete;
        Server& operator=(const Server&) = delete;
        Server(Server&&) = default;
        Server& operator=(Server &&) = default;
};

} //namespace rtnetlink
} //namespce network
} //namespace phosphor
OpenPOWER on IntegriCloud