summaryrefslogtreecommitdiffabout
path: root/lib
authorMichael Krelin <hacker@klever.net>2007-01-11 23:52:29 (UTC)
committer Michael Krelin <hacker@klever.net>2007-01-11 23:52:29 (UTC)
commitf5eb33d7a9c296e3fa7bde9b678f0e1027a9bf88 (patch) (unidiff)
treef2936775dd8a6a817a1d8f1b5add8cc6d0841796 /lib
parent709e399023109847ff747b87dca371078fd95868 (diff)
downloadlibopkele-f5eb33d7a9c296e3fa7bde9b678f0e1027a9bf88.zip
libopkele-f5eb33d7a9c296e3fa7bde9b678f0e1027a9bf88.tar.gz
libopkele-f5eb33d7a9c296e3fa7bde9b678f0e1027a9bf88.tar.bz2
extension chain
Diffstat (limited to 'lib') (more/less context) (show whitespace changes)
-rw-r--r--lib/Makefile.am3
-rw-r--r--lib/extension_chain.cc16
2 files changed, 18 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 783f2ab..bdadd44 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -23,6 +23,7 @@ libopkele_la_SOURCES = \
23 consumer.cc \ 23 consumer.cc \
24 exception.cc \ 24 exception.cc \
25 extension.cc \ 25 extension.cc \
26 sreg.cc 26 sreg.cc \
27 extension_chain.cc
27libopkele_la_LDFLAGS = \ 28libopkele_la_LDFLAGS = \
28 -version-info 1:0:0 29 -version-info 1:0:0
diff --git a/lib/extension_chain.cc b/lib/extension_chain.cc
new file mode 100644
index 0000000..16537dc
--- a/dev/null
+++ b/lib/extension_chain.cc
@@ -0,0 +1,16 @@
1#include <cstdarg>
2#include <opkele/extension_chain.h>
3
4namespace opkele {
5
6 void extension_chain_t::checkid_hook(params_t& p,const string& identity) {
7 for(iterator i=begin();i!=end();++i) (*i)->checkid_hook(p,identity);
8 }
9 void extension_chain_t::id_res_hook(const params_t& p,const params_t& sp,const string& identity) {
10 for(iterator i=begin();i!=end();++i) (*i)->id_res_hook(p,sp,identity);
11 }
12 void extension_chain_t::checkid_hook(const params_t& pin,params_t& pout) {
13 for(iterator i=begin();i!=end();++i) (*i)->checkid_hook(pin,pout);
14 }
15
16}