summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNiklas2011-11-09 15:35:47 +0100
committerNiklas2011-11-09 15:35:47 +0100
commit611d8eb7ba4beee51e1ea2706205582b1fd97294 (patch)
tree66d5f013ea9182ded3ad27fb0801a2724922b469 /src
parentsome documentation changes (adding comments) and doxygen files) (diff)
downloadfbgui-611d8eb7ba4beee51e1ea2706205582b1fd97294.tar.gz
fbgui-611d8eb7ba4beee51e1ea2706205582b1fd97294.tar.xz
fbgui-611d8eb7ba4beee51e1ea2706205582b1fd97294.zip
new comments
Diffstat (limited to 'src')
-rw-r--r--src/interfaceconfiguration.cpp1
-rw-r--r--src/networkdiscovery.cpp8
-rw-r--r--src/networkmanager.cpp1
3 files changed, 9 insertions, 1 deletions
diff --git a/src/interfaceconfiguration.cpp b/src/interfaceconfiguration.cpp
index 99f994a..3d09e52 100644
--- a/src/interfaceconfiguration.cpp
+++ b/src/interfaceconfiguration.cpp
@@ -5,6 +5,7 @@
*
* reads and stores a interface configuration.
* the config file has already to exist. It is created by the cdhcpcd client process.
+ *
*/
diff --git a/src/networkdiscovery.cpp b/src/networkdiscovery.cpp
index 27c3a0f..132429c 100644
--- a/src/networkdiscovery.cpp
+++ b/src/networkdiscovery.cpp
@@ -142,7 +142,13 @@ void NetworkDiscovery::initAndRun(QString serverIp, bool userChoice, bool autoUp
-/**/
+/**
+ * @brief the main work. Here we start with searching for usable interfaces and check the IsRunning state.
+ *
+ * the main work. Here we start with searching for usable interfaces and check the IsRunning state.
+ * check every second the IsRunning state. Do this as long the counter (@see _ifUpCountdown) is greater than 0.
+ * Default: _ifUpCountdown = 10.
+ */
void NetworkDiscovery::mainWork()
{
if (_autoUp) {
diff --git a/src/networkmanager.cpp b/src/networkmanager.cpp
index b0290ef..2dc774f 100644
--- a/src/networkmanager.cpp
+++ b/src/networkmanager.cpp
@@ -5,6 +5,7 @@
*
* Manages the network configurations like setting new default routes.
* It provides methods for ipv4 and some method for ipv6.
+ *
*/