aqhome, aqhome-apps: cleanup, removed unneeded files.

This commit is contained in:
Martin Preuss
2025-03-14 21:22:48 +01:00
parent 31d8cb10df
commit 7e745c98e6
194 changed files with 292 additions and 17295 deletions

View File

@@ -45,20 +45,20 @@
<headers dist="true" install="$(pkgincludedir)/ipc" >
msgreader.h
msgwriter.h
ipcmsgreader.h
nodemsgreader.h
mqttmsgreader.h
ttyobject.h
tcpd_object.h
tcp_object.h
endpoint.h
message.h
msgrequest.h
msgreader.h
msgwriter.h
ipcm_sgreader.h
node_msgreader.h
tcpd_object.h
tcp_object.h
ipc_server.h
ipc_client.h
tty_object.h
tty_endpoint.h
mqtt_msgreader.h
mqtt_endpoint.h
mqtt_client.h
</headers>
@@ -78,20 +78,20 @@
<sources>
$(local/typefiles)
msgreader.c
msgwriter.c
ipcmsgreader.c
nodemsgreader.c
mqttmsgreader.c
ttyobject.c
tcpd_object.c
tcp_object.c
endpoint.c
message.c
msgrequest.c
msgreader.c
msgwriter.c
node_msgreader.c
mqtt_msgreader.c
tcpd_object.c
tcp_object.c
ipc_msgreader.c
ipc_server.c
ipc_client.c
ipc_endpoint.c
tty_object.c
tty_endpoint.c
mqtt_endpoint.c
mqtt_client.c

View File

@@ -561,7 +561,7 @@ int _handleClosed(AQH_OBJECT *o)
{
AQH_ENDPOINT *xo;
DBG_ERROR(AQH_LOGDOMAIN, "Connection closed.");
DBG_INFO(AQH_LOGDOMAIN, "Connection closed.");
xo=GWEN_INHERIT_GETDATA(AQH_OBJECT, AQH_ENDPOINT, o);
if (xo) {
AQH_Object_Disable(xo->msgWriter);

View File

@@ -12,7 +12,7 @@
#include "./ipc_client.h"
#include <aqhome/ipc2/ipcmsgreader.h>
#include <aqhome/ipc2/ipc_msgreader.h>
#include <aqhome/ipc2/msgwriter.h>
#include <aqhome/events2/fdobject.h>

View File

@@ -10,7 +10,7 @@
# include <config.h>
#endif
#include "./ipcmsgreader.h"
#include "./ipc_msgreader.h"
#include "./msgreader_p.h"
#include <aqhome/events2/fdobject.h>

View File

@@ -13,7 +13,7 @@
#include "./ipc_server_p.h"
#include <aqhome/ipc2/tcpd_object.h>
#include <aqhome/ipc2/ipcmsgreader.h>
#include <aqhome/ipc2/ipc_msgreader.h>
#include <aqhome/ipc2/msgwriter.h>
#include <aqhome/events2/fdobject.h>
@@ -121,7 +121,7 @@ int _handleNewConn(AQH_OBJECT *o, int newFd)
AQH_OBJECT *msgWriter;
AQH_OBJECT *endpoint;
DBG_ERROR(AQH_LOGDOMAIN, "Incoming connection");
DBG_INFO(AQH_LOGDOMAIN, "Incoming connection");
eventLoop=AQH_Object_GetEventLoop(o);
fdCopy=dup(newFd);

View File

@@ -12,7 +12,7 @@
#include "./mqtt_client.h"
#include <aqhome/ipc2/mqttmsgreader.h>
#include <aqhome/ipc2/mqtt_msgreader.h>
#include <aqhome/ipc2/msgwriter.h>
#include <aqhome/events2/fdobject.h>

View File

@@ -10,7 +10,7 @@
# include <config.h>
#endif
#include "./mqttmsgreader.h"
#include "./mqtt_msgreader.h"
#include "./msgreader_p.h"
#include <aqhome/events2/fdobject.h>

View File

@@ -10,7 +10,7 @@
# include <config.h>
#endif
#include "./nodemsgreader.h"
#include "./node_msgreader.h"
#include "./msgreader_p.h"
#include <aqhome/events2/fdobject.h>

View File

@@ -186,7 +186,7 @@ int _handleSocketReady(AQH_OBJECT *o)
DBG_ERROR(AQH_LOGDOMAIN, "here (%d)", clientSk);
}
else {
DBG_ERROR(AQH_LOGDOMAIN, "New connection");
DBG_INFO(AQH_LOGDOMAIN, "New connection");
if (0==AQH_Object_EmitSignal(o, AQH_TCPD_OBJECT_SIGNAL_NEWCONN, clientSk, NULL)) {
DBG_ERROR(AQH_LOGDOMAIN, "New connection not handled");
close(clientSk);

View File

@@ -12,9 +12,9 @@
#include "./tty_endpoint.h"
#include <aqhome/ipc2/nodemsgreader.h>
#include <aqhome/ipc2/node_msgreader.h>
#include <aqhome/ipc2/msgwriter.h>
#include <aqhome/ipc2/ttyobject.h>
#include <aqhome/ipc2/tty_object.h>
#include <aqhome/ipc2/endpoint.h>
#include <aqhome/events2/fdobject.h>

View File

@@ -10,7 +10,7 @@
# include <config.h>
#endif
#include "./ttyobject.h"
#include "./tty_object.h"
#include <aqhome/events2/fdobject.h>
#include <gwenhywfar/debug.h>