Open Lighting Architecture  0.9.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
NetworkManagerInterface.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  * NetworkManagerInterface.h
17  * The glue between the ResponderHelper and the OLA network code.
18  * Copyright (C) 2013 Peter Newman
19  */
20 
29 #ifndef INCLUDE_OLA_RDM_NETWORKMANAGERINTERFACE_H_
30 #define INCLUDE_OLA_RDM_NETWORKMANAGERINTERFACE_H_
31 
33 #include <ola/network/Interface.h>
34 #include <ola/network/InterfacePicker.h>
35 #include <ola/rdm/RDMEnums.h>
36 
37 #include <string>
38 #include <vector>
39 
40 namespace ola {
41 namespace rdm {
42 
47  public:
49  virtual ~NetworkManagerInterface() {}
50 
54  virtual const ola::network::InterfacePicker *GetInterfacePicker() const = 0;
55 
62  virtual rdm_dhcp_status GetDHCPStatus(
63  const ola::network::Interface &iface) const = 0;
64 
74  virtual bool GetIPV4DefaultRoute(
75  ola::network::IPV4Address *default_route) const = 0;
76 
80  virtual const std::string GetHostname() const = 0;
81 
85  virtual const std::string GetDomainName() const = 0;
86 
90  virtual bool GetNameServers(
91  std::vector<ola::network::IPV4Address> *name_servers) const = 0;
92 };
93 } // namespace rdm
94 } // namespace ola
95 #endif // INCLUDE_OLA_RDM_NETWORKMANAGERINTERFACE_H_