MCPcopy Create free account
hub / github.com/OpenVPN/openvpn3-linux / GetRegisteredModules

Method GetRegisteredModules

src/client/proxy-devposture.hpp:85–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83#endif
84
85 std::vector<DBus::Object::Path> GetRegisteredModules() const
86 {
87 using namespace std::string_literals;
88
89 try
90 {
91 GVariant *r = proxy->Call(target, "GetRegisteredModules");
92
93 return glib2::Value::ExtractVector<DBus::Object::Path>(r, 0);
94 }
95 catch (const DBus::Proxy::Exception &e)
96 {
97 throw Exception("Failed to retrieve registered modules: "s + e.what());
98 }
99 }
100
101 std::string ProtocolLookup(const std::string &enterprise_id) const
102 {

Callers 1

devposture_proxyFunction · 0.80

Calls 2

ExceptionClass · 0.70
whatMethod · 0.45

Tested by 1

devposture_proxyFunction · 0.64