33 lines
696 B
C
33 lines
696 B
C
/****************************************************************************
|
|
* This file is part of the project AqHome.
|
|
* AqHome (c) by 2025 Martin Preuss, all rights reserved.
|
|
*
|
|
* The license for this file can be found in the file COPYING which you
|
|
* should have received along with this file.
|
|
****************************************************************************/
|
|
|
|
#ifndef AQHOME_DATA_CLIENT_P_H
|
|
#define AQHOME_DATA_CLIENT_P_H
|
|
|
|
#include "aqhome/dataclient/client.h"
|
|
|
|
|
|
struct AQH_DATACLIENT {
|
|
AQH_EVENT_LOOP *eventLoop;
|
|
|
|
AQH_OBJECT *ipcEndpoint;
|
|
int timeoutInSeconds;
|
|
|
|
uint8_t protoId;
|
|
uint8_t protoVer;
|
|
|
|
uint32_t lastMsgId;
|
|
|
|
GWEN_DB_NODE *dbLocalArgs;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|