port: add functions to get eth-id and create instance as singelton

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@956 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Branch: ni/coolstream
Commit: 6796243339
Author: Thilo Graf <dbt@novatux.de>
Date: 2010-12-23 (Thu, 23 Dec 2010)



------------------
This commit was generated by Migit
This commit is contained in:
2010-12-23 22:43:40 +00:00
parent c3228edaa3
commit 5a87f58c92
2 changed files with 34 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/* /*
* $Header: /cvsroot/tuxbox/apps/tuxbox/neutrino/src/system/configure_network.cpp,v 1.6 2003/03/26 17:53:12 thegoodguy Exp $ * $port: configure_network.cpp,v 1.7 2009/11/20 22:44:19 tuxbox-cvs Exp $
* *
* (C) 2003 by thegoodguy <thegoodguy@berlios.de> * (C) 2003 by thegoodguy <thegoodguy@berlios.de>
* *
@@ -38,6 +38,24 @@ CNetworkConfig::CNetworkConfig(void)
copy_to_orig(); copy_to_orig();
} }
CNetworkConfig* CNetworkConfig::getInstance()
{
static CNetworkConfig* network_config = NULL;
if(!network_config)
{
network_config = new CNetworkConfig();
printf("[network config] Instance created\n");
}
return network_config;
}
CNetworkConfig::~CNetworkConfig()
{
}
void CNetworkConfig::init_vars(void) void CNetworkConfig::init_vars(void)
{ {
char mask[16]; char mask[16];
@@ -74,7 +92,7 @@ bool CNetworkConfig::modified_from_orig(void)
(orig_netmask != netmask ) || (orig_netmask != netmask ) ||
(orig_broadcast != broadcast ) || (orig_broadcast != broadcast ) ||
(orig_gateway != gateway ) || (orig_gateway != gateway ) ||
(orig_hostname != hostname ) || (orig_hostname != hostname ) ||
(orig_inet_static != inet_static ) (orig_inet_static != inet_static )
); );
} }

View File

@@ -2,7 +2,7 @@
#define __configure_network_h__ #define __configure_network_h__
/* /*
* $Header: /cvsroot/tuxbox/apps/tuxbox/neutrino/src/system/configure_network.h,v 1.3 2003/03/10 21:22:41 thegoodguy Exp $ * $port: configure_network.h,v 1.4 2009/11/20 22:44:19 tuxbox-cvs Exp $
* *
* (C) 2003 by thegoodguy <thegoodguy@berlios.de> * (C) 2003 by thegoodguy <thegoodguy@berlios.de>
* *
@@ -37,7 +37,6 @@ class CNetworkConfig
bool orig_inet_static; bool orig_inet_static;
void copy_to_orig(void); void copy_to_orig(void);
bool modified_from_orig(void);
void init_vars(void); void init_vars(void);
public: public:
@@ -50,7 +49,11 @@ class CNetworkConfig
std::string hostname; std::string hostname;
bool inet_static; bool inet_static;
CNetworkConfig(void); CNetworkConfig();
~CNetworkConfig();
static CNetworkConfig* getInstance();
bool modified_from_orig(void);
void commitConfig(void); void commitConfig(void);
@@ -58,4 +61,12 @@ class CNetworkConfig
void stopNetwork(void); void stopNetwork(void);
}; };
class CNetAdapter
{
private:
long mac_addr_sys ( u_char *addr);
public:
std::string getMacAddr(void);
};
#endif /* __configure_network_h__ */ #endif /* __configure_network_h__ */