forked from device-management-toolkit/rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.h
More file actions
24 lines (20 loc) · 667 Bytes
/
info.h
File metadata and controls
24 lines (20 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*********************************************************************
* Copyright (c) Intel Corporation 2019 - 2020
* SPDX-License-Identifier: Apache-2.0
**********************************************************************/
#ifndef __INFO_H__
#define __INFO_H__
#include <string>
bool info_get(const std::string info);
bool info_get_verify(const std::string info);
bool info_get_version();
bool info_get_build_number();
bool info_get_sku();
bool info_get_uuid();
bool info_get_control_mode();
bool info_get_dns_suffix();
bool info_get_fqdn();
bool info_get_all();
bool info_get_remote_access_connection_status();
bool info_get_lan_interface_settings();
#endif