Open Lighting Architecture 0.10.9
Loading...
Searching...
No Matches
NetworkManager.h
Go to the documentation of this file.
1/*
2 * This library is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU Lesser General Public
4 * License as published by the Free Software Foundation; either
5 * version 2.1 of the License, or (at your option) any later version.
6 *
7 * This library is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10 * Lesser General Public License for more details.
11 *
12 * You should have received a copy of the GNU Lesser General Public
13 * License along with this library; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 * NetworkManager.h
17 * Talks to the machine's network systems to get/set data.
18 * Copyright (C) 2013 Peter Newman
19 */
20
29#ifndef COMMON_RDM_NETWORKMANAGER_H_
30#define COMMON_RDM_NETWORKMANAGER_H_
31
32#include <memory>
33#include <string>
34#include <vector>
35
37
38namespace ola {
39namespace rdm {
40
46 public:
48 m_interface_picker.reset(ola::network::InterfacePicker::NewPicker());
49 }
50
52 rdm_dhcp_status GetDHCPStatus(const ola::network::Interface &iface) const;
53 bool GetIPV4DefaultRoute(int32_t *if_index,
54 ola::network::IPV4Address *default_route) const;
55 const std::string GetHostname() const;
56 const std::string GetDomainName() const;
57 bool GetNameServers(
58 std::vector<ola::network::IPV4Address> *name_servers) const;
59
60 private:
61 std::auto_ptr<ola::network::InterfacePicker> m_interface_picker;
62};
63} // namespace rdm
64} // namespace ola
65#endif // COMMON_RDM_NETWORKMANAGER_H_
The interface for the NetworkManager.
Represents a IPv4 Address.
Definition IPV4Address.h:55
Definition Interface.h:35
Given some initial parameters, find the best network interface to use.
Definition InterfacePicker.h:48
A NetworkManager which reflects the actual host network configuration.
Definition NetworkManager.h:45
bool GetIPV4DefaultRoute(int32_t *if_index, ola::network::IPV4Address *default_route) const
Definition NetworkManager.cpp:46
bool GetNameServers(std::vector< ola::network::IPV4Address > *name_servers) const
Definition NetworkManager.cpp:59
const std::string GetDomainName() const
Definition NetworkManager.cpp:55
const std::string GetHostname() const
Definition NetworkManager.cpp:51
const ola::network::InterfacePicker * GetInterfacePicker() const
Definition NetworkManager.cpp:36
rdm_dhcp_status GetDHCPStatus(const ola::network::Interface &iface) const
Definition NetworkManager.cpp:40
Gets global network information.
Definition NetworkManagerInterface.h:46
The namespace containing all OLA symbols.
Definition Credentials.cpp:44