2 * Copyright (C) 2012 Andreas Steffen
3 * HSR Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup os_info os_info
24 typedef struct os_info_t os_info_t
;
25 typedef enum os_fwd_status_t os_fwd_status_t
;
30 * Defines the IPv4 forwarding status
32 enum os_fwd_status_t
{
38 extern enum_name_t
*os_fwd_status_names
;
41 * Interface for the Operating System (OS) information module
46 * Get the OS product name or distribution
50 chunk_t (*get_name
)(os_info_t
*this);
53 * Get the OS version or release
57 chunk_t (*get_version
)(os_info_t
*this);
60 * Get the OS IPv4 forwarding status
62 * @return IP forwarding status
64 os_fwd_status_t (*get_fwd_status
)(os_info_t
*this);
67 * Enumerates over all installed packages
69 * @return return package enumerator
71 enumerator_t
* (*create_package_enumerator
)(os_info_t
*this);
74 * Destroys an os_info_t object.
76 void (*destroy
)(os_info_t
*this);
80 * Create an os_info_t object
82 os_info_t
* os_info_create(void);
84 #endif /** OS_INFO_H_ @}*/