Difference between revisions of "2.0/Modules/bahamut"

From AnopeWiki
Jump to: navigation, search
(Created page with "{{Language|2.0/Modules/bahamut}} {| class="wikitable" |- |{{ModHead}}||''' Bahamut ''' |- |{{ModAuth}}||''' Anope ''' |- |} == <div class="moduleheader">Description</div> ==")
 
 
Line 1: Line 1:
 
{{Language|2.0/Modules/bahamut}}
 
{{Language|2.0/Modules/bahamut}}
{| class="wikitable"
+
{{Header|bahamut|Protocol|Anope}}
|-
+
|{{ModHead}}||'''  Bahamut  '''
+
|-
+
|{{ModAuth}}||'''  Anope  '''
+
|-
+
|}
+
  
 
== <div class="moduleheader">Description</div> ==
 
== <div class="moduleheader">Description</div> ==
 +
 +
*'''NOTE''': You must select the correct protocol for your IRCd.  The wrong one will cause unpredictable results, the '''best''' of which will be that you are unable to connect to your ircd.
 +
 +
== <div class="moduleheader">Default Configuration</div> ==
 +
 +
<div class="code">
 +
<syntaxhighlight lang="cpp">
 +
/*
 +
* [REQUIRED] Protocol module
 +
*
 +
* This directive tells Anope which IRCd Protocol to speak when connecting.
 +
* You MUST modify this to match the IRCd you run.
 +
*
 +
* Supported:
 +
*  - bahamut
 +
*  - charybdis
 +
*  - hybrid
 +
*  - inspircd12
 +
*  - inspircd20
 +
*  - ngircd
 +
*  - plexus
 +
*  - ratbox
 +
*  - unreal
 +
*/
 +
module
 +
{
 +
        name = "inspircd20"
 +
 +
        /*
 +
        * Some protocol modules can enforce mode locks server-side. This reduces the spam caused by
 +
        * services immediately reversing mode changes for locked modes.
 +
        *
 +
        * If the protocol module you have loaded does not support this, this setting will have no effect.
 +
        */
 +
        use_server_side_mlock = yes
 +
 +
        /*
 +
        * Some protocol modules can enforce topic locks server-side. This reduces the spam caused by
 +
        * services immediately reversing topic changes.
 +
        *
 +
        * If the protocol module you have loaded does not support this, this setting will have no effect.
 +
        */
 +
        use_server_side_topiclock = yes
 +
}
 +
</syntaxhighlight></div>

Latest revision as of 17:25, 9 May 2014

Language

English

Section Protocol
Module bahamut
Author Anope

Description

  • NOTE: You must select the correct protocol for your IRCd. The wrong one will cause unpredictable results, the best of which will be that you are unable to connect to your ircd.

Default Configuration

/*
 * [REQUIRED] Protocol module
 *
 * This directive tells Anope which IRCd Protocol to speak when connecting.
 * You MUST modify this to match the IRCd you run.
 *
 * Supported:
 *  - bahamut
 *  - charybdis
 *  - hybrid
 *  - inspircd12
 *  - inspircd20
 *  - ngircd
 *  - plexus
 *  - ratbox
 *  - unreal
 */
module
{
        name = "inspircd20"
 
        /*
         * Some protocol modules can enforce mode locks server-side. This reduces the spam caused by
         * services immediately reversing mode changes for locked modes.
         *
         * If the protocol module you have loaded does not support this, this setting will have no effect.
         */
        use_server_side_mlock = yes
 
        /*
         * Some protocol modules can enforce topic locks server-side. This reduces the spam caused by
         * services immediately reversing topic changes.
         *
         * If the protocol module you have loaded does not support this, this setting will have no effect.
         */
        use_server_side_topiclock = yes
}