Open Lighting Architecture
0.9.5
Main Page
Modules
Related Pages
Namespaces
Classes
Files
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
common
rdm
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
36
#include "
ola/rdm/NetworkManagerInterface.h
"
37
38
namespace
ola {
39
namespace
rdm {
40
45
class
NetworkManager
:
public
NetworkManagerInterface
{
46
public
:
47
NetworkManager
() :
NetworkManagerInterface
() {
48
m_interface_picker.reset(ola::network::InterfacePicker::NewPicker());
49
}
50
51
const
ola::network::InterfacePicker
*
GetInterfacePicker
()
const
;
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_
Generated on Sun Mar 1 2015 13:02:39 for Open Lighting Architecture by
1.8.1.2