42#include "HttpUpload.h"
135#define HttpResMgr_setAuthenticator(o, authenticator, realm) \
136 HttpDir_setAuthenticator((HttpDir*)o, authenticator, realm)
144 HttpResMgr_constructor(
this,io,maxUploads,dirName, alloc,priority);
148 HttpResMgr_destructor(
this);
Memory allocation and deallocation Interface class.
Definition: AllocatorIntf.h:83
An instance of the HttpDir class, which is a collection of zero or more resources,...
Definition: HttpServer.h:2368
The HttpResMgr class makes it possible for HTTP clients to use an IoIntf for uploading and downloadin...
Definition: HttpResMgr.h:83
~HttpResMgr()
Terminate the HttpResMgr object.
Definition: HttpResMgr.h:147
HttpResMgr(IoIntf *io, int maxUploads, const char *dirName, AllocatorIntf *alloc=0, S8 priority=0)
Initializes a HttpResMgr.
Definition: HttpResMgr.h:139
The HttpUploadCbIntf interface is an abstract class that must be implemented by code using the HttpUp...
Definition: HttpUpload.h:163
The HttpUpload node is responsible for creating and starting HttpUploadNode instances.
Definition: HttpUpload.h:196
The IoIntf class specifies an abstract file API, implementations include ZipIo, DiskIo,...
Definition: IoIntf.h:377