/**************************************************************************** * This file is part of the project AqHome. * AqHome (c) by 2023 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_HTTP_P_H #define AQHOME_HTTP_P_H #include "./aqhomehttp.h" typedef struct AQHOME_HTTP AQHOME_HTTP; struct AQHOME_HTTP { GWEN_MSG_ENDPOINT *rootEndpoint; GWEN_MSG_ENDPOINT *ipcdEndpoint; GWEN_MSG_ENDPOINT *mqttEndpoint; GWEN_MSG_ENDPOINT *httpdEndpoint; AQH_STORAGE *storage; GWEN_DB_NODE *dbArgs; char *pidFile; }; #endif