58 lines
1.8 KiB
C
58 lines
1.8 KiB
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 AQH_HTTP_SERVICE_H
|
|
#define AQH_HTTP_SERVICE_H
|
|
|
|
|
|
|
|
#include "aqhome/service/service.h"
|
|
|
|
#include "aqhome/http/httprequest.h"
|
|
#include "aqhome/http/urlhandler.h"
|
|
|
|
#include <gwenhywfar/msg.h>
|
|
#include <gwenhywfar/db.h>
|
|
#include <gwenhywfar/buffer.h>
|
|
#include <gwenhywfar/url.h>
|
|
#include <gwenhywfar/mutex.h>
|
|
|
|
|
|
|
|
|
|
AQHOME_API AQH_SERVICE *AQH_HttpService_new(const char *configFolder, const char *sourceFolder);
|
|
AQHOME_API void AQH_HttpService_Extend(AQH_SERVICE *sv, const char *configFolder, const char *sourceFolder);
|
|
|
|
|
|
AQHOME_API const char *AQH_HttpService_GetConfigFolder(const AQH_SERVICE *sv);
|
|
AQHOME_API void AQH_HttpService_SetConfigFolder(AQH_SERVICE *sv, const char *s);
|
|
|
|
|
|
AQHOME_API const char *AQH_HttpService_GetSourceFolder(const AQH_SERVICE *sv);
|
|
AQHOME_API void AQH_HttpService_SetSourceFolder(AQH_SERVICE *sv, const char *s);
|
|
|
|
AQHOME_API const char *AQH_HttpService_GetSiteHeader(const AQH_SERVICE *sv);
|
|
AQHOME_API void AQH_HttpService_SetSiteHeader(AQH_SERVICE *sv, const char *s);
|
|
|
|
|
|
AQHOME_API const char *AQH_HttpService_GetSiteFooter(const AQH_SERVICE *sv);
|
|
AQHOME_API void AQH_HttpService_SetSiteFooter(AQH_SERVICE *sv, const char *s);
|
|
|
|
|
|
AQHOME_API uint32_t AQH_HttpService_GetNextModuleId(AQH_SERVICE *sv);
|
|
AQHOME_API uint32_t AQH_HttpService_GetNextUserId(AQH_SERVICE *sv);
|
|
|
|
AQHOME_API int AQH_HttpService_GetMaxSessionAgeInSecs(const AQH_SERVICE *sv);
|
|
AQHOME_API void AQH_HttpService_SetMaxSessionAgeInSecs(AQH_SERVICE *sv, int i);
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|