summaryrefslogtreecommitdiffabout
path: root/include/opkele/xserver.h
authorMichael Krelin <hacker@klever.net>2007-01-12 00:28:16 (UTC)
committer Michael Krelin <hacker@klever.net>2007-01-12 00:28:16 (UTC)
commit4cc2e58186e8cd9b96a3573c92f6664064cf11fe (patch) (side-by-side diff)
tree762943dfd3db8b6c48d5b31418310962376746d3 /include/opkele/xserver.h
parentf5eb33d7a9c296e3fa7bde9b678f0e1027a9bf88 (diff)
downloadlibopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.zip
libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.tar.gz
libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.tar.bz2
extended server and consumer classes
Diffstat (limited to 'include/opkele/xserver.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/xserver.h37
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 @@
+#ifndef __OPKELE_XSERVER_H
+#define __OPKELE_XSERVER_H
+
+/**
+ * @file
+ * @brief OpenID server with built-in extension chain
+ */
+
+#include <opkele/extension_chain.h>
+#include <opkele/server.h>
+
+/**
+ * @brief the main opkele namespace
+ */
+namespace opkele {
+
+ /**
+ * Extended OpenID server implementationwith built in
+ * extensions chain.
+ */
+ class xserver_t : public server_t, public extension_chain_t {
+ public:
+
+ void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
+ server_t::checkid_immediate(pin,return_to,pout,this);
+ }
+ void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
+ server_t::checkid_setup(pin,return_to,pout,this);
+ }
+ void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0) {
+ server_t::checkid_(mode,pin,return_to,pout,this);
+ }
+ };
+
+}
+
+#endif /* __OPKELE_XSERVER_H */