PTLib  Version 2.14.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
httpsvc.h File Reference
#include <ptlib/svcproc.h>
#include <ptlib/sockets.h>
#include <ptclib/httpform.h>
#include <ptclib/cypher.h>
Include dependency graph for httpsvc.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  PHTTPServiceThread
 
class  PHTTPServiceProcess
 
struct  PHTTPServiceProcess::Info
 
class  PConfigPage
 
class  PConfigSectionsPage
 
class  PRegisterPage
 
class  PServiceHTML
 
class  PServiceMacro
 
class  PServiceHTTPString
 
class  PServiceHTTPFile
 
class  PServiceHTTPDirectory
 

Macros

#define P_EMPTY
 
#define PCREATE_SERVICE_MACRO(name, request, args)
 
#define PCREATE_SERVICE_MACRO_BLOCK(name, request, args, block)
 

Macro Definition Documentation

#define P_EMPTY
#define PCREATE_SERVICE_MACRO (   name,
  request,
  args 
)
Value:
class PServiceMacro_##name : public PServiceMacro { \
public: \
PServiceMacro_##name() : PServiceMacro(#name, false) { } \
PString Translate(PHTTPRequest &, const PString &, const PString &) const; \
}; \
static const PServiceMacro_##name serviceMacro_##name; \
PString PServiceMacro_##name::Translate(PHTTPRequest & request, const PString & args, const PString &) const
#define PCREATE_SERVICE_MACRO_BLOCK (   name,
  request,
  args,
  block 
)
Value:
class PServiceMacro_##name : public PServiceMacro { \
public: \
PServiceMacro_##name() : PServiceMacro(#name, true) { } \
PString Translate(PHTTPRequest &, const PString &, const PString &) const; \
}; \
static const PServiceMacro_##name serviceMacro_##name; \
PString PServiceMacro_##name::Translate(PHTTPRequest & request, const PString & args, const PString & block) const