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/src/modules.c (file contents), Revision 32 by knight, Sun Oct 2 20:41:23 2005 UTC vs.
ircd-hybrid-7.2/src/modules.c (file contents), Revision 908 by stu, Sun Nov 4 23:21:51 2007 UTC

# Line 38 | Line 38
38   #include "memory.h"
39   #include "list.h"
40  
41 + #define SHARED_SUFFIX "so"
42 +
43   /* -TimeMr14C:
44   * I have moved the dl* function definitions and
45   * the two functions (load_a_module / unload_a_module) to the
# Line 231 | Line 233 | findmodule_byname(const char *name)
233    {
234      modp = ptr->data;
235  
236 <    if (!irccmp(modp->name, name))
236 >    if (strcmp(modp->name, name) == 0)
237        return ptr;
238    }
239  
# Line 572 | Line 574 | load_all_modules(int warn)
574    mod_add_cmd(&accept_msgtab);
575    mod_add_cmd(&admin_msgtab);
576    mod_add_cmd(&away_msgtab);
577 +  mod_add_cmd(&bmask_msgtab);
578 +  mod_add_cmd(&cap_msgtab);
579    mod_add_cmd(&capab_msgtab);
580    mod_add_cmd(&cburst_msgtab);
581    mod_add_cmd(&close_msgtab);
# Line 641 | Line 645 | load_all_modules(int warn)
645    mod_add_cmd(&svinfo_msgtab);
646    mod_add_cmd(&tb_msgtab);
647    add_capability("TB", CAP_TB, 1);
648 +  mod_add_cmd(&tburst_msgtab);
649 +  add_capability("TBURST", CAP_TBURST, 1);
650    mod_add_cmd(&testline_msgtab);
651    mod_add_cmd(&testgecos_msgtab);
652    mod_add_cmd(&testmask_msgtab);
653    mod_add_cmd(&time_msgtab);
654 +  mod_add_cmd(&tmode_msgtab);
655    mod_add_cmd(&topic_msgtab);
656    mod_add_cmd(&trace_msgtab);
657    add_capability("UNKLN", CAP_UNKLN, 1);
# Line 656 | Line 663 | load_all_modules(int warn)
663    mod_add_cmd(&users_msgtab);
664    mod_add_cmd(&version_msgtab);
665    mod_add_cmd(&wallops_msgtab);
666 +  mod_add_cmd(&watch_msgtab);
667    mod_add_cmd(&who_msgtab);
668    mod_add_cmd(&whois_msgtab);
669    mod_add_cmd(&whowas_msgtab);
# Line 663 | Line 671 | load_all_modules(int warn)
671    mod_add_cmd(&help_msgtab);
672    mod_add_cmd(&uhelp_msgtab);
673   #ifdef BUILD_CONTRIB
674 +  mod_add_cmd(&bs_msgtab);
675    mod_add_cmd(&botserv_msgtab);
676    mod_add_cmd(&capture_msgtab);
677    mod_add_cmd(&chanserv_msgtab);

Comparing:
ircd-hybrid/src/modules.c (property svn:keywords), Revision 32 by knight, Sun Oct 2 20:41:23 2005 UTC vs.
ircd-hybrid-7.2/src/modules.c (property svn:keywords), Revision 908 by stu, Sun Nov 4 23:21:51 2007 UTC

# Line 1 | Line 1
1 < Revision
1 > Id Revision

Diff Legend

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