blob: 8f225623878944232f1af97fcc444a460b05240e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <opkele/exception.h>
#include <opkele/extension.h>
namespace opkele {
void extension_t::checkid_hook(params_t& /* p */,const string& /* identity */ ) {
throw not_implemented(OPKELE_CP_ "Consumer checkid_hook not implemented");
}
void extension_t::id_res_hook(const params_t& /* p */,const params_t& /* sp */,const string& /* identity */) {
throw not_implemented(OPKELE_CP_ "Consumer id_res_hook not implemented");
}
void extension_t::checkid_hook(const params_t& /* pin */,params_t& /* pout */) {
throw not_implemented(OPKELE_CP_ "Server checkid_hook not implemented");
}
}
|