Open Lighting Architecture
0.9.0
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 program is free software; you can redistribute it and/or modify
3
* it under the terms of the GNU General Public License as published by
4
* the Free Software Foundation; either version 2 of the License, or
5
* (at your option) any later version.
6
*
7
* This program 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
10
* GNU Library General Public License for more details.
11
*
12
* You should have received a copy of the GNU General Public License
13
* along with this program; if not, write to the Free Software
14
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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
(
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_
Generated on Fri Apr 4 2014 11:46:03 for Open Lighting Architecture by
1.8.1.2