Open Lighting Architecture  0.9.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 
38 namespace ola {
39 namespace 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(ola::network::IPV4Address *default_route) const;
54  const std::string GetHostname() const;
55  const std::string GetDomainName() const;
56  bool GetNameServers(
57  std::vector<ola::network::IPV4Address> *name_servers) const;
58 
59  private:
60  std::auto_ptr<ola::network::InterfacePicker> m_interface_picker;
61 };
62 } // namespace rdm
63 } // namespace ola
64 #endif // COMMON_RDM_NETWORKMANAGER_H_