ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/modules.c
(Generate patch)

Comparing:
ircd-hybrid-7.2/src/modules.c (file contents), Revision 34 by lusky, Sun Oct 2 21:05:51 2005 UTC vs.
ircd-hybrid-8/src/modules.c (file contents), Revision 1447 by michael, Mon Jun 25 20:22:29 2012 UTC

# Line 22 | Line 22
22   *  $Id$
23   */
24  
25 + #include "ltdl.h"
26 +
27   #include "stdinc.h"
28 < #include "tools.h"
28 > #include "list.h"
29   #include "modules.h"
30 < #include "s_log.h"
30 > #include "log.h"
31   #include "ircd.h"
32   #include "client.h"
33   #include "send.h"
34 < #include "s_conf.h"
33 < #include "handlers.h"
34 > #include "conf.h"
35   #include "numeric.h"
36   #include "parse.h"
37   #include "ircd_defs.h"
38   #include "irc_string.h"
39   #include "memory.h"
39 #include "list.h"
40  
41 /* -TimeMr14C:
42 * I have moved the dl* function definitions and
43 * the two functions (load_a_module / unload_a_module) to the
44 * file dynlink.c
45 * And also made the necessary changes to those functions
46 * to comply with shl_load and friends.
47 * In this file, to keep consistency with the makefile,
48 * I added the ability to load *.sl files, too.
49 * 27/02/2002
50 */
41  
42 < #ifndef STATIC_MODULES
42 > dlink_list modules_list = { NULL, NULL, 0 };
43  
44 < dlink_list mod_list = { NULL, NULL, 0 };
44 > static const char *unknown_ver = "<unknown>";
45  
46   static const char *core_module_table[] =
47   {
48 <  "m_die",
49 <  "m_join",
50 <  "m_kick",
51 <  "m_kill",
52 <  "m_message",
53 <  "m_mode",
54 <  "m_nick",
55 <  "m_part",
56 <  "m_quit",
57 <  "m_server",
58 <  "m_sjoin",
59 <  "m_squit",
48 >  "m_die.la",
49 >  "m_error.la",
50 >  "m_join.la",
51 >  "m_kick.la",
52 >  "m_kill.la",
53 >  "m_message.la",
54 >  "m_mode.la",
55 >  "m_nick.la",
56 >  "m_part.la",
57 >  "m_quit.la",
58 >  "m_server.la",
59 >  "m_sjoin.la",
60 >  "m_squit.la",
61    NULL
62   };
63  
64   static dlink_list mod_paths = { NULL, NULL, 0 };
65   static dlink_list conf_modules = { NULL, NULL, 0 };
66  
67 < static void mo_modload(struct Client *, struct Client *, int, char *[]);
68 < static void mo_modlist(struct Client *, struct Client *, int, char *[]);
69 < static void mo_modreload(struct Client *, struct Client *, int, char *[]);
70 < static void mo_modunload(struct Client *, struct Client *, int, char *[]);
71 < static void mo_modrestart(struct Client *, struct Client *, int, char *[]);
81 <
82 < struct Message modload_msgtab = {
83 < "MODLOAD", 0, 0, 2, 0, MFLG_SLOW, 0,
84 <  {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modload, m_ignore}
85 < };
67 > int
68 > modules_valid_suffix(const char *name)
69 > {
70 >  return ((name = strrchr(name, '.'))) && !strcmp(name, ".la");
71 > }
72  
73 < struct Message modunload_msgtab = {
74 < "MODUNLOAD", 0, 0, 2, 0, MFLG_SLOW, 0,
75 <  {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modunload, m_ignore}
76 < };
73 > /* unload_one_module()
74 > *
75 > * inputs       - name of module to unload
76 > *              - 1 to say modules unloaded, 0 to not
77 > * output       - 0 if successful, -1 if error
78 > * side effects - module is unloaded
79 > */
80 > int
81 > unload_one_module(const char *name, int warn)
82 > {
83 >  struct module *modp = NULL;
84  
85 < struct Message modreload_msgtab = {
86 <  "MODRELOAD", 0, 0, 2, 0, MFLG_SLOW, 0,
94 <  {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modreload, m_ignore}
95 < };
85 >  if ((modp = findmodule_byname(name)) == NULL)
86 >    return -1;
87  
88 < struct Message modlist_msgtab = {
89 < "MODLIST", 0, 0, 0, 0, MFLG_SLOW, 0,
99 <  {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modlist, m_ignore}
100 < };
88 >  if (modp->modexit)
89 >   modp->modexit();
90  
91 < struct Message modrestart_msgtab = {
92 < "MODRESTART", 0, 0, 0, 0, MFLG_SLOW, 0,
93 < {m_unregistered, m_not_oper, m_ignore, m_ignore, mo_modrestart, m_ignore}
105 < };
91 >  assert(dlink_list_length(&modules_list) > 0);
92 >  dlinkDelete(&modp->node, &modules_list);
93 >  MyFree(modp->name);
94  
95 +  lt_dlclose(modp->handle);
96  
97 < extern struct Message error_msgtab;
97 >  if (warn == 1)
98 >  {
99 >    ilog(LOG_TYPE_IRCD, "Module %s unloaded", name);
100 >    sendto_realops_flags(UMODE_ALL, L_ALL, "Module %s unloaded", name);
101 >  }
102 >
103 >  return 0;
104 > }
105 >
106 > /* load_a_module()
107 > *
108 > * inputs       - path name of module, int to notice, int of core
109 > * output       - -1 if error 0 if success
110 > * side effects - loads a module if successful
111 > */
112 > int
113 > load_a_module(const char *path, int warn)
114 > {
115 >  lt_dlhandle tmpptr = NULL;
116 >  const char *mod_basename = NULL;
117 >  struct module *modp = NULL;
118 >
119 >  if (findmodule_byname((mod_basename = libio_basename(path))))
120 >    return 1;
121 >
122 >  if (!(tmpptr = lt_dlopen(path))) {
123 >    const char *err = ((err = lt_dlerror())) ? err : "<unknown>";
124 >
125 >    sendto_realops_flags(UMODE_ALL, L_ALL, "Error loading module %s: %s",
126 >                         mod_basename, err);
127 >    ilog(LOG_TYPE_IRCD, "Error loading module %s: %s", mod_basename, err);
128 >    return -1;
129 >  }
130 >
131 >  if ((modp = lt_dlsym(tmpptr, "module_entry")) == NULL)
132 >  {
133 >    sendto_realops_flags(UMODE_ALL, L_ALL, "Module %s has no module_entry export",
134 >                         mod_basename);
135 >    ilog(LOG_TYPE_IRCD, "Module %s has no module_entry export", mod_basename);
136 >    lt_dlclose(tmpptr);
137 >    return -1;
138 >  }
139 >
140 >  modp->handle = tmpptr;
141 >
142 >  if (EmptyString(modp->version))
143 >    modp->version = unknown_ver;
144 >
145 >  DupString(modp->name, mod_basename);
146 >  dlinkAdd(modp, &modp->node, &modules_list);
147 >
148 >  if (modp->modinit)
149 >    modp->modinit();
150 >
151 >  if (warn == 1)
152 >  {
153 >    sendto_realops_flags(UMODE_ALL, L_ALL,
154 >                         "Module %s [version: %s handle: %p] loaded.",
155 >                         modp->name, modp->version, tmpptr);
156 >    ilog(LOG_TYPE_IRCD, "Module %s [version: %s handle: %p] loaded.",
157 >         modp->name, modp->version, tmpptr);
158 >  }
159 >
160 >  return 0;
161 > }
162  
163   /*
164   * modules_init
# Line 117 | Line 170 | extern struct Message error_msgtab;
170   void
171   modules_init(void)
172   {
173 <  mod_add_cmd(&modload_msgtab);
174 <  mod_add_cmd(&modunload_msgtab);
175 <  mod_add_cmd(&modreload_msgtab);
176 <  mod_add_cmd(&modlist_msgtab);
177 <  mod_add_cmd(&modrestart_msgtab);
178 <  mod_add_cmd(&error_msgtab);
173 >  if (lt_dlinit())
174 >  {
175 >    ilog(LOG_TYPE_IRCD, "Couldn't initialize the libltdl run time dynamic"
176 >         " link library. Exiting.");
177 >    exit(0);
178 >  }
179   }
180  
181   /* mod_find_path()
# Line 135 | Line 188 | static struct module_path *
188   mod_find_path(const char *path)
189   {
190    dlink_node *ptr;
138  struct module_path *mpath;
191  
192    DLINK_FOREACH(ptr, mod_paths.head)
193    {
194 <    mpath = ptr->data;
194 >    struct module_path *mpath = ptr->data;
195  
196      if (!strcmp(path, mpath->path))
197        return mpath;
# Line 194 | Line 246 | add_conf_module(const char *name)
246   void
247   mod_clear_paths(void)
248   {
249 <  struct module_path *pathst;
198 <  dlink_node *ptr;
199 <  dlink_node *next_ptr;
249 >  dlink_node *ptr = NULL, *next_ptr = NULL;
250  
251    DLINK_FOREACH_SAFE(ptr, next_ptr, mod_paths.head)
252    {
253 <    pathst = ptr->data;
254 <
205 <    dlinkDelete(&pathst->node, &mod_paths);
206 <    MyFree(pathst);
253 >    dlinkDelete(ptr, &mod_paths);
254 >    MyFree(ptr->data);
255    }
256  
257    DLINK_FOREACH_SAFE(ptr, next_ptr, conf_modules.head)
258    {
259 <    pathst = ptr->data;
260 <
213 <    dlinkDelete(&pathst->node, &conf_modules);
214 <    MyFree(pathst);
259 >    dlinkDelete(ptr, &conf_modules);
260 >    MyFree(ptr->data);
261    }
262   }
263  
# Line 221 | Line 267 | mod_clear_paths(void)
267   * output       - NULL if not found or pointer to module
268   * side effects - NONE
269   */
270 < dlink_node *
270 > struct module *
271   findmodule_byname(const char *name)
272   {
273 <  dlink_node *ptr;
228 <  struct module *modp;
273 >  dlink_node *ptr = NULL;
274  
275 <  DLINK_FOREACH(ptr, mod_list.head)
275 >  DLINK_FOREACH(ptr, modules_list.head)
276    {
277 <    modp = ptr->data;
277 >    struct module *modp = ptr->data;
278  
279 <    if (!irccmp(modp->name, name))
280 <      return ptr;
279 >    if (strcmp(modp->name, name) == 0)
280 >      return modp;
281    }
282  
283    return NULL;
# Line 251 | Line 296 | load_all_modules(int warn)
296    struct dirent *ldirent = NULL;
297    char module_fq_name[PATH_MAX + 1];
298  
254  modules_init();
255
299    if ((system_module_dir = opendir(AUTOMODPATH)) == NULL)
300    {
301 <    ilog(L_WARN, "Could not load modules from %s: %s",
301 >    ilog(LOG_TYPE_IRCD, "Could not load modules from %s: %s",
302           AUTOMODPATH, strerror(errno));
303      return;
304    }
305  
306    while ((ldirent = readdir(system_module_dir)) != NULL)
307    {
308 <    const char *offset = strrchr(ldirent->d_name, '.');
266 <
267 <    if (offset && !strcmp(offset, SHARED_SUFFIX))
308 >    if (modules_valid_suffix(ldirent->d_name))
309      {
310         snprintf(module_fq_name, sizeof(module_fq_name), "%s/%s",
311                  AUTOMODPATH, ldirent->d_name);
312 <       load_a_module(module_fq_name, warn, 0);
312 >       load_a_module(module_fq_name, warn);
313      }
314    }
315  
# Line 285 | Line 326 | void
326   load_conf_modules(void)
327   {
328    dlink_node *ptr = NULL;
288  struct module_path *mpath = NULL;
329  
330    DLINK_FOREACH(ptr, conf_modules.head)
331    {
332 <    mpath = ptr->data;
332 >    struct module_path *mpath = ptr->data;
333  
334      if (findmodule_byname(mpath->path) == NULL)
335 <      load_one_module(mpath->path, 0);
335 >      load_one_module(mpath->path);
336    }
337   }
338  
# Line 310 | Line 350 | load_core_modules(int warn)
350  
351    for (; core_module_table[i]; ++i)
352    {
353 <    snprintf(module_name, sizeof(module_name), "%s%s%s", MODPATH,
354 <             core_module_table[i], SHARED_SUFFIX);
353 >    snprintf(module_name, sizeof(module_name), "%s%s",
354 >             MODPATH, core_module_table[i]);
355  
356 <    if (load_a_module(module_name, warn, 1) == -1)
356 >    if (load_a_module(module_name, warn) == -1)
357      {
358 <      ilog(L_CRIT, "Error loading core module %s%s: terminating ircd",
359 <           core_module_table[i], SHARED_SUFFIX);
358 >      ilog(LOG_TYPE_IRCD, "Error loading core module %s: terminating ircd",
359 >           core_module_table[i]);
360        exit(EXIT_FAILURE);
361      }
362    }
# Line 330 | Line 370 | load_core_modules(int warn)
370   * side effects - module is loaded if found.
371   */
372   int
373 < load_one_module(char *path, int coremodule)
373 > load_one_module(const char *path)
374   {
375    dlink_node *ptr = NULL;
376    char modpath[PATH_MAX + 1];
# Line 342 | Line 382 | load_one_module(char *path, int coremodu
382  
383      snprintf(modpath, sizeof(modpath), "%s/%s", mpath->path, path);
384  
385 +    if (!modules_valid_suffix(path))
386 +      continue;
387 +
388      if (strstr(modpath, "../") == NULL &&
389          strstr(modpath, "/..") == NULL)
347    {
390        if (!stat(modpath, &statbuf))
391 <      {
392 <        if (S_ISREG(statbuf.st_mode))
351 <        {
352 <          /* Regular files only please */
353 <          return load_a_module(modpath, 1, coremodule);
354 <        }
355 <      }
356 <    }
391 >        if (S_ISREG(statbuf.st_mode))  /* Regular files only please */
392 >          return load_a_module(modpath, 1);
393    }
394  
395    sendto_realops_flags(UMODE_ALL, L_ALL,
396                         "Cannot locate module %s", path);
397 <  ilog(L_WARN, "Cannot locate module %s", path);
397 >  ilog(LOG_TYPE_IRCD, "Cannot locate module %s", path);
398    return -1;
399   }
364
365 /* load a module .. */
366 static void
367 mo_modload(struct Client *client_p, struct Client *source_p,
368           int parc, char *parv[])
369 {
370  char *m_bn;
371
372  if (!IsAdmin(source_p))
373  {
374    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
375               me.name, source_p->name);
376    return;
377  }
378
379  m_bn = basename(parv[1]);
380
381  if (findmodule_byname(m_bn) != NULL)
382  {
383    sendto_one(source_p, ":%s NOTICE %s :Module %s is already loaded",
384               me.name, source_p->name, m_bn);
385    return;
386  }
387
388  load_one_module(parv[1], 0);
389 }
390
391 /* unload a module .. */
392 static void
393 mo_modunload(struct Client *client_p, struct Client *source_p,
394             int parc, char *parv[])
395 {
396  char *m_bn;
397  dlink_node *ptr;
398  struct module *modp;
399
400  if (!IsAdmin(source_p))
401  {
402    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
403               me.name, source_p->name);
404    return;
405  }
406
407  m_bn = basename(parv[1]);
408
409  if ((ptr = findmodule_byname(m_bn)) == NULL)
410  {
411    sendto_one(source_p, ":%s NOTICE %s :Module %s is not loaded",
412               me.name, source_p->name, m_bn);
413    return;
414  }
415
416  modp = ptr->data;
417
418  if (modp->core == 1)
419  {
420    sendto_one(source_p,
421               ":%s NOTICE %s :Module %s is a core module and may not be unloaded",
422               me.name, source_p->name, m_bn);
423    return;
424  }
425
426  /* XXX might want to simply un dlink it here */
427
428  if (unload_one_module(m_bn, 1) == -1)
429  {
430    sendto_one(source_p, ":%s NOTICE %s :Module %s is not loaded",
431               me.name, source_p->name, m_bn);
432  }
433 }
434
435 /* unload and load in one! */
436 static void
437 mo_modreload(struct Client *client_p, struct Client *source_p,
438             int parc, char *parv[])
439 {
440  char *m_bn;
441  dlink_node *ptr;
442  struct module *modp;
443  int check_core;
444
445  if (!IsAdmin(source_p))
446  {
447    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
448               me.name, source_p->name);
449    return;
450  }
451
452  m_bn = basename(parv[1]);
453
454  if ((ptr = findmodule_byname(m_bn)) == NULL)
455  {
456    sendto_one(source_p, ":%s NOTICE %s :Module %s is not loaded",
457               me.name, source_p->name, m_bn);
458    return;
459  }
460
461  modp = ptr->data;
462  check_core = modp->core;
463
464  if (unload_one_module(m_bn, 1) == -1)
465  {
466    sendto_one(source_p, ":%s NOTICE %s :Module %s is not loaded",
467               me.name, source_p->name, m_bn);
468    return;
469  }
470
471  if ((load_one_module(parv[1], check_core) == -1) && check_core)
472  {
473    sendto_realops_flags(UMODE_ALL, L_ALL, "Error reloading core "
474                         "module: %s: terminating ircd", parv[1]);
475    ilog(L_CRIT, "Error loading core module %s: terminating ircd", parv[1]);
476    exit(0);
477  }
478 }
479
480 /* list modules .. */
481 static void
482 mo_modlist(struct Client *client_p, struct Client *source_p,
483           int parc, char *parv[])
484 {
485  dlink_node *ptr;
486  struct module *modp;
487
488  if (!IsAdmin(source_p))
489  {
490    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
491               me.name, source_p->name);
492    return;
493  }
494
495  DLINK_FOREACH(ptr, mod_list.head)
496  {
497    modp = ptr->data;
498
499    if (parc > 1)
500    {
501      if (match(parv[1], modp->name))
502      {
503        sendto_one(source_p, form_str(RPL_MODLIST), me.name, parv[0],
504                   modp->name, modp->address,
505                   modp->version, modp->core?"(core)":"");
506      }
507    }
508    else
509    {
510      sendto_one(source_p, form_str(RPL_MODLIST), me.name, parv[0],
511                 modp->name, modp->address,
512                 modp->version, modp->core?"(core)":"");
513    }
514  }
515
516  sendto_one(source_p, form_str(RPL_ENDOFMODLIST),
517             me.name, source_p->name);
518 }
519
520 /* unload and reload all modules */
521 static void
522 mo_modrestart(struct Client *client_p, struct Client *source_p,
523              int parc, char *parv[])
524 {
525  unsigned int modnum = 0;
526  dlink_node *ptr;
527  dlink_node *tptr;
528  struct module *modp;
529  
530  if (!IsAdmin(source_p))
531  {
532    sendto_one(source_p, form_str(ERR_NOPRIVILEGES),
533               me.name, source_p->name);
534    return;
535  }
536
537  sendto_one(source_p, ":%s NOTICE %s :Reloading all modules",
538             me.name, source_p->name);
539
540  modnum = dlink_list_length(&mod_list);
541
542  DLINK_FOREACH_SAFE(ptr, tptr, mod_list.head)
543  {
544    modp = ptr->data;
545    unload_one_module(modp->name, 0);
546  }
547
548  load_all_modules(0);
549  load_conf_modules();
550  load_core_modules(0);
551
552  sendto_realops_flags(UMODE_ALL, L_ALL,
553              "Module Restart: %u modules unloaded, %lu modules loaded",
554                        modnum, dlink_list_length(&mod_list));
555  ilog(L_WARN, "Module Restart: %u modules unloaded, %lu modules loaded",
556       modnum, dlink_list_length(&mod_list));
557 }
558
559 #else /* STATIC_MODULES */
560 #include "s_serv.h"
561
562 /* load_all_modules()
563 *
564 * input        - warn flag
565 * output       - NONE
566 * side effects - all the msgtabs are added for static modules
567 */
568 void
569 load_all_modules(int warn)
570 {
571  mod_add_cmd(&error_msgtab);
572  mod_add_cmd(&accept_msgtab);
573  mod_add_cmd(&admin_msgtab);
574  mod_add_cmd(&away_msgtab);
575  mod_add_cmd(&capab_msgtab);
576  mod_add_cmd(&cburst_msgtab);
577  mod_add_cmd(&close_msgtab);
578  mod_add_cmd(&connect_msgtab);
579 #ifdef HAVE_LIBCRYPTO
580  mod_add_cmd(&challenge_msgtab);
581  mod_add_cmd(&cryptlink_msgtab);
582 #endif
583  mod_add_cmd(&die_msgtab);
584  mod_add_cmd(&drop_msgtab);
585  mod_add_cmd(&eob_msgtab);
586  mod_add_cmd(&etrace_msgtab);
587  mod_add_cmd(&gline_msgtab);
588  add_capability("GLN", CAP_GLN, 1);
589  mod_add_cmd(&hash_msgtab);
590  mod_add_cmd(&ungline_msgtab);
591  mod_add_cmd(&info_msgtab);
592  mod_add_cmd(&invite_msgtab);
593  mod_add_cmd(&ison_msgtab);
594  mod_add_cmd(&join_msgtab);
595  mod_add_cmd(&kick_msgtab);
596  mod_add_cmd(&kill_msgtab);
597  mod_add_cmd(&kline_msgtab);
598  add_capability("KLN", CAP_KLN, 1);
599  mod_add_cmd(&dline_msgtab);
600  mod_add_cmd(&unkline_msgtab);
601  mod_add_cmd(&undline_msgtab);
602  mod_add_cmd(&knock_msgtab);
603  add_capability("KNOCK", CAP_KNOCK, 1);
604  mod_add_cmd(&knockll_msgtab);
605  mod_add_cmd(&links_msgtab);
606  mod_add_cmd(&list_msgtab);
607  mod_add_cmd(&lljoin_msgtab);
608  mod_add_cmd(&llnick_msgtab);
609  mod_add_cmd(&locops_msgtab);
610  mod_add_cmd(&lusers_msgtab);
611  mod_add_cmd(&privmsg_msgtab);
612  mod_add_cmd(&notice_msgtab);
613  mod_add_cmd(&map_msgtab);
614  mod_add_cmd(&mode_msgtab);
615  mod_add_cmd(&motd_msgtab);
616  mod_add_cmd(&names_msgtab);
617  mod_add_cmd(&nburst_msgtab);
618  mod_add_cmd(&nick_msgtab);
619  mod_add_cmd(&omotd_msgtab);
620  mod_add_cmd(&oper_msgtab);
621  mod_add_cmd(&operwall_msgtab);
622  mod_add_cmd(&part_msgtab);
623  mod_add_cmd(&pass_msgtab);
624  mod_add_cmd(&ping_msgtab);
625  mod_add_cmd(&pong_msgtab);
626  mod_add_cmd(&post_msgtab);
627  mod_add_cmd(&get_msgtab);
628  mod_add_cmd(&put_msgtab);
629  mod_add_cmd(&quit_msgtab);
630  mod_add_cmd(&rehash_msgtab);
631  mod_add_cmd(&restart_msgtab);
632  mod_add_cmd(&resv_msgtab);
633  mod_add_cmd(&rkline_msgtab);
634  mod_add_cmd(&rxline_msgtab);
635  mod_add_cmd(&server_msgtab);
636  mod_add_cmd(&set_msgtab);
637  mod_add_cmd(&sid_msgtab);
638  mod_add_cmd(&sjoin_msgtab);
639  mod_add_cmd(&squit_msgtab);
640  mod_add_cmd(&stats_msgtab);
641  mod_add_cmd(&svinfo_msgtab);
642  mod_add_cmd(&tb_msgtab);
643  add_capability("TB", CAP_TB, 1);
644  mod_add_cmd(&testline_msgtab);
645  mod_add_cmd(&testgecos_msgtab);
646  mod_add_cmd(&testmask_msgtab);
647  mod_add_cmd(&time_msgtab);
648  mod_add_cmd(&topic_msgtab);
649  mod_add_cmd(&trace_msgtab);
650  add_capability("UNKLN", CAP_UNKLN, 1);
651  mod_add_cmd(&uid_msgtab);
652  mod_add_cmd(&unresv_msgtab);
653  mod_add_cmd(&unxline_msgtab);
654  mod_add_cmd(&user_msgtab);
655  mod_add_cmd(&userhost_msgtab);
656  mod_add_cmd(&users_msgtab);
657  mod_add_cmd(&version_msgtab);
658  mod_add_cmd(&wallops_msgtab);
659  mod_add_cmd(&who_msgtab);
660  mod_add_cmd(&whois_msgtab);
661  mod_add_cmd(&whowas_msgtab);
662  mod_add_cmd(&xline_msgtab);
663  mod_add_cmd(&help_msgtab);
664  mod_add_cmd(&uhelp_msgtab);
665 #ifdef BUILD_CONTRIB
666  mod_add_cmd(&botserv_msgtab);
667  mod_add_cmd(&capture_msgtab);
668  mod_add_cmd(&chanserv_msgtab);
669  mod_add_cmd(&chghost_msgtab);
670  mod_add_cmd(&chgident_msgtab);
671  mod_add_cmd(&chgname_msgtab);
672  mod_add_cmd(&classlist_msgtab);
673  mod_add_cmd(&clearchan_msgtab);
674  mod_add_cmd(&cs_msgtab);
675  mod_add_cmd(&ctrace_msgtab);
676  mod_add_cmd(&delspoof_msgtab);
677  mod_add_cmd(&flags_msgtab);
678  mod_add_cmd(&forcejoin_msgtab);
679  mod_add_cmd(&forcepart_msgtab);
680  mod_add_cmd(&global_msgtab);
681  mod_add_cmd(&help_msgtab);
682  mod_add_cmd(&uhelp_msgtab);
683  mod_add_cmd(&helpserv_msgtab);
684  mod_add_cmd(&hostserv_msgtab);
685  mod_add_cmd(&identify_msgtab);
686  mod_add_cmd(&jupe_msgtab);
687  mod_add_cmd(&killhost_msgtab);
688  mod_add_cmd(&ltrace_msgtab);
689  mod_add_cmd(&memoserv_msgtab);
690  mod_add_cmd(&mkpasswd_msgtab);
691  mod_add_cmd(&ms_msgtab);
692  mod_add_cmd(&nickserv_msgtab);
693  mod_add_cmd(&ns_msgtab);
694  mod_add_cmd(&ojoin_msgtab);
695  mod_add_cmd(&operserv_msgtab);
696  mod_add_cmd(&operspy_msgtab);
697  mod_add_cmd(&opme_msgtab);
698  mod_add_cmd(&os_msgtab);
699  mod_add_cmd(&seenserv_msgtab);
700  mod_add_cmd(&spoof_msgtab);
701  mod_add_cmd(&statserv_msgtab);
702  mod_add_cmd(&svsnick_msgtab);
703  mod_add_cmd(&uncapture_msgtab);
704  /* FIXME: what about spy*? */
705 #endif
706 }
707 #endif /* STATIC_MODULES */

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)