]> git.ipfire.org Git - thirdparty/squid.git/blob - src/LoadableModules.cc
SourceFormat Enforcement
[thirdparty/squid.git] / src / LoadableModules.cc
1 /*
2 * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 #include "squid.h"
10 #include "Debug.h"
11 #include "LoadableModule.h"
12 #include "LoadableModules.h"
13 #include "wordlist.h"
14
15 static void
16 LoadModule(const char *fname)
17 {
18 debugs(1, DBG_IMPORTANT, "Loading Squid module from '" << fname << "'");
19
20 LoadableModule *m = new LoadableModule(fname);
21 m->load();
22 debugs(1, 2, "Loaded Squid module from '" << fname << "'");
23
24 //TODO: TheModules.push_back(m);
25 }
26
27 void
28 LoadableModulesConfigure(const wordlist *names)
29 {
30 int count = 0;
31 for (const wordlist *i = names; i; i = i->next, ++count)
32 LoadModule(i->key);
33 debugs(1, DBG_IMPORTANT, "Squid plugin modules loaded: " << count);
34 }
35