summaryrefslogtreecommitdiffabout
path: root/include/opkele/oauth_ext.h
Side-by-side diff
Diffstat (limited to 'include/opkele/oauth_ext.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/oauth_ext.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/opkele/oauth_ext.h b/include/opkele/oauth_ext.h
index 37a826b..657defa 100644
--- a/include/opkele/oauth_ext.h
+++ b/include/opkele/oauth_ext.h
@@ -9,33 +9,24 @@
#include <opkele/extension.h>
namespace opkele {
/**
* OpenID OAuth extension
* http://step2.googlecode.com/svn/spec/openid_oauth_extension/latest/openid_oauth_extension.html
*/
class oauth_ext_t : public extension_t {
public:
std::string m_consumer, m_scope, m_request_token;
- /**
- * Consumer constructor.
- * @param fr required fields
- * @see fields_required
- * @param fo optional fields
- * @see fields_optional
- * @param pu policy url
- * @see policy_url
- */
oauth_ext_t(const char *consumer = "", const char *scope = "") : m_consumer(consumer), m_scope(scope) { }
virtual void rp_checkid_hook(basic_openid_message& om);
virtual void rp_id_res_hook(const basic_openid_message& om,
const basic_openid_message& sp);
virtual void op_checkid_hook(const basic_openid_message& inm);
virtual void op_id_res_hook(basic_openid_message& oum);
virtual void checkid_hook(basic_openid_message& om);
virtual void id_res_hook(const basic_openid_message& om,
const basic_openid_message& sp);
virtual void checkid_hook(const basic_openid_message& inm,