32 lines
684 B
C
32 lines
684 B
C
/****************************************************************************
|
|
* 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"
|
|
|
|
#include <gwenhywfar/mutex.h>
|
|
|
|
|
|
|
|
typedef struct AQHOME_HTTP AQHOME_HTTP;
|
|
struct AQHOME_HTTP {
|
|
AQH_STORAGE *storage; /* do not release */
|
|
GWEN_MUTEX *storageMutex;
|
|
|
|
AQH_HTTP_CONTENT *contentTree;
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|