summaryrefslogtreecommitdiffstats
path: root/workspace/customdhcpcd/src/logwriter.h
diff options
context:
space:
mode:
authorNiklas2011-07-14 16:59:40 +0200
committerNiklas2011-07-14 16:59:40 +0200
commit635d6f901892cb7df028eb41f3d727e569a3af7e (patch)
tree1aa43facc6fc4eee386013556b663eb9e53d2035 /workspace/customdhcpcd/src/logwriter.h
parentmultiple clients possible. inserted something into _send_message (diff)
downloadfbgui-635d6f901892cb7df028eb41f3d727e569a3af7e.tar.gz
fbgui-635d6f901892cb7df028eb41f3d727e569a3af7e.tar.xz
fbgui-635d6f901892cb7df028eb41f3d727e569a3af7e.zip
customdhcpcd is now compiling and can communicate with the LogReceiver
started to implement the QProcess handling (parallel calls of dhcpcd out of fbgui/LogReceiver)
Diffstat (limited to 'workspace/customdhcpcd/src/logwriter.h')
-rw-r--r--workspace/customdhcpcd/src/logwriter.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/workspace/customdhcpcd/src/logwriter.h b/workspace/customdhcpcd/src/logwriter.h
index 5ee7b84..6276b53 100644
--- a/workspace/customdhcpcd/src/logwriter.h
+++ b/workspace/customdhcpcd/src/logwriter.h
@@ -12,12 +12,14 @@
* new functions for communicating with Qt
*/
void setSocketName(char * sn);
-void setInterfaceName(char * in);
-void initQtLoggerSocket ();
+void setInterfaceName(const char * in);
+int initQtLoggerSocket ();
void closeQtLoggerSocket ();
+void sendToQt ();
+void logToQt(int status, int substatus, const char * msg);
void logSendToQt(int type);
//void logToQt(char * status, char * substatus, char * msg);
-void logToQt(int status, int substatus, char * msg);
-void sendToQt ();
+
+
#endif /* LOGWRITER_H_ */