author | Michael Krelin <hacker@klever.net> | 2007-01-12 00:28:16 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2007-01-12 00:28:16 (UTC) |
commit | 4cc2e58186e8cd9b96a3573c92f6664064cf11fe (patch) (side-by-side diff) | |
tree | 762943dfd3db8b6c48d5b31418310962376746d3 /include/opkele/server.h | |
parent | f5eb33d7a9c296e3fa7bde9b678f0e1027a9bf88 (diff) | |
download | libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.zip libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.tar.gz libopkele-4cc2e58186e8cd9b96a3573c92f6664064cf11fe.tar.bz2 |
extended server and consumer classes
-rw-r--r-- | include/opkele/server.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/opkele/server.h b/include/opkele/server.h index bf131d8..598eb47 100644 --- a/include/opkele/server.h +++ b/include/opkele/server.h @@ -63,18 +63,18 @@ namespace opkele { * @param pout the response parameters * @param ext pointer to the extension hooks object * @throw exception in case of errors or negative reply */ - void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); + virtual void checkid_immediate(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); /** * process the checkid_setup request. * @param pin the incoming request parameters * @param return_to reference to the object to store return_to url to * @param pout the response parameters * @param ext pointer to the extension hooks object * @throw exception in case of errors or negative reply */ - void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); + virtual void checkid_setup(const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); /** * the actual functionality behind checkid_immediate() and * checkid_setup() * @param mode the request being processed (either @@ -84,9 +84,9 @@ namespace opkele { * @param pout the response parameters * @param ext pointer to the extension hooks object * @throw exception in case of errors or negative reply */ - void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); + virtual void checkid_(mode_t mode,const params_t& pin,string& return_to,params_t& pout,extension_t *ext=0); /** * process the check_authentication request. * @param pin incoming request parameters * @param pout response parameters |