summaryrefslogtreecommitdiffstats
path: root/provider_registration.hpp
blob: ad956fcbaae5f9afd643d046d9e9f29edd0bda39 (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
#pragma once

namespace provider
{

/**
 * @brief Provider Library filename extension
 *
 * Autotools versions the shared libraries, so the shared libraries end with
 * extension name .so.*
 */

constexpr auto PROVIDER_SONAME_EXTN = ".so.";

/**
 * @brief Register Callback handlers for IPMI provider libraries
 *
 * Open the directory path for net-ipmid provider libraries and scan the
 * directory for files that end with .so.*. and dlopen the shared libraries
 * to register the handlers for the callback routines.
 *
 * @param[in] providerLibPath - Directory path for reading the IPMI provider
 *                              libraries
 */
void registerCallbackHandlers(const char* providerLibPath);

} // namespace provider
OpenPOWER on IntegriCloud