-rw-r--r-- | include/opkele/extension.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/include/opkele/extension.h b/include/opkele/extension.h index 2248324..f547555 100644 --- a/include/opkele/extension.h +++ b/include/opkele/extension.h | |||
@@ -24,6 +24,9 @@ namespace opkele { | |||
24 | * @param p parameters about to be submitted to server | 24 | * @param p parameters about to be submitted to server |
25 | * @param identity identity being verified. It may differ from the | 25 | * @param identity identity being verified. It may differ from the |
26 | * one available in parameters list in case of delegation | 26 | * one available in parameters list in case of delegation |
27 | * @see consumer_t::checkid_ | ||
28 | * @see consumer_t::checkid_immediate | ||
29 | * @see consumer_t::checkid_setup | ||
27 | */ | 30 | */ |
28 | virtual void checkid_hook(params_t& p,const string& identity); | 31 | virtual void checkid_hook(params_t& p,const string& identity); |
29 | /** | 32 | /** |
@@ -35,6 +38,7 @@ namespace opkele { | |||
35 | * @param identity identity confirmed. May differ from the one | 38 | * @param identity identity confirmed. May differ from the one |
36 | * available in parameters list in case of delegation. May also be | 39 | * available in parameters list in case of delegation. May also be |
37 | * empty which means - extract one from parameters | 40 | * empty which means - extract one from parameters |
41 | * @see consumer_t::id_res | ||
38 | */ | 42 | */ |
39 | virtual void id_res_hook(const params_t& p,const params_t& sp,const string& identity); | 43 | virtual void id_res_hook(const params_t& p,const params_t& sp,const string& identity); |
40 | 44 | ||
@@ -42,8 +46,11 @@ namespace opkele { | |||
42 | * hook called by server before returning information to consumer. | 46 | * hook called by server before returning information to consumer. |
43 | * The hook may manipulate output parameters. It is important to | 47 | * The hook may manipulate output parameters. It is important to |
44 | * note that modified pout["signed"] is used for signing response. | 48 | * note that modified pout["signed"] is used for signing response. |
45 | * @param pin request parameters list | 49 | * @param pin request parameters list with "openid." prefix |
46 | * @param put response parameters list | 50 | * @param pout response parameters list without "openid." prefix |
51 | * @see server_t::checkid_ | ||
52 | * @see server_t::checkid_immediate | ||
53 | * @see server_t::checkid_setup | ||
47 | */ | 54 | */ |
48 | virtual void checkid_hook(const params_t& pin,params_t& pout); | 55 | virtual void checkid_hook(const params_t& pin,params_t& pout); |
49 | 56 | ||