blob: 066f19c490576dccbd071a13c68d45e4e93432dc [file] [log] [blame]
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +05301#pragma once
William A. Kennington III217bb3f2022-09-29 13:43:13 -07002#include <sdeventplus/event.hpp>
3#include <sdeventplus/source/io.hpp>
William A. Kennington III32eef712022-01-24 17:03:03 -08004#include <stdplus/fd/managed.hpp>
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +05305
6namespace phosphor
7{
8namespace network
9{
William A. Kennington III5f165dc2022-10-24 15:58:55 -070010namespace netlink
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053011{
12
13constexpr auto BUFSIZE = 4096;
14
15/** General rtnetlink server which waits for the POLLIN event
16 and calls the call back once it gets the event.
17 Usage would be create the server with the call back
18 and call the run method.
19 */
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053020class Server
21{
22
Gunnar Mills57d9c502018-09-14 14:42:34 -050023 public:
24 /** @brief Constructor
25 *
26 * @details Sets up the server to handle incoming RTNETLINK events
27 *
28 * @param[in] eventPtr - Unique ptr reference to sd_event.
29 * @param[in] socket - netlink socket.
30 */
William A. Kennington III217bb3f2022-09-29 13:43:13 -070031 Server(sdeventplus::Event& event);
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053032
William A. Kennington III32eef712022-01-24 17:03:03 -080033 /** @brief Gets the socket associated with this netlink server */
34 inline stdplus::Fd& getSock()
35 {
36 return sock;
37 }
38
39 private:
40 stdplus::ManagedFd sock;
William A. Kennington III217bb3f2022-09-29 13:43:13 -070041 sdeventplus::source::IO io;
Ratan Gupta0f9dc1b2017-09-03 17:57:50 +053042};
43
William A. Kennington III5f165dc2022-10-24 15:58:55 -070044} // namespace netlink
Gunnar Mills57d9c502018-09-14 14:42:34 -050045} // namespace network
46} // namespace phosphor