-rw-r--r-- | include/opkele/xserver.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/include/opkele/xserver.h b/include/opkele/xserver.h new file mode 100644 index 0000000..e29bfe6 --- a/dev/null +++ b/include/opkele/xserver.h | |||
@@ -0,0 +1,37 @@ | |||
1 | #ifndef __OPKELE_XSERVER_H | ||
2 | #define __OPKELE_XSERVER_H | ||
3 | |||
4 | /** | ||
5 | * @file | ||
6 | * @brief OpenID server with built-in extension chain | ||
7 | */ | ||
8 | |||
9 | #include <opkele/extension_chain.h> | ||
10 | #include <opkele/server.h> | ||
11 | |||
12 | /** | ||
13 | * @brief the main opkele namespace | ||
14 | */ | ||
15 | namespace opkele { | ||
16 | |||
17 | /** | ||
18 | * Extended OpenID server implementationwith built in | ||
19 | * extensions chain. | ||
20 | */ | ||
21 | class xserver_t : public server_t, public extension_chain_t { | ||
22 | public: | ||
23 | |||
24 | void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) { | ||
25 | server_t::checkid_immediate(pin,return_to,pout,this); | ||
26 | } | ||
27 | void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) { | ||
28 | server_t::checkid_setup(pin,return_to,pout,this); | ||
29 | } | ||
30 | void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) { | ||
31 | server_t::checkid_(mode,pin,return_to,pout,this); | ||
32 | } | ||
33 | }; | ||
34 | |||
35 | } | ||
36 | |||
37 | #endif /* __OPKELE_XSERVER_H */ | ||