From: michael Date: Wed, 24 Dec 2014 13:26:29 +0000 (+0000) Subject: - Use reserved example domains as specified in rfc2606 X-Git-Tag: 1.0.0beta1~29 X-Git-Url: http://git.serene-ircd.net/?a=commitdiff_plain;h=00b4a839a74ee9509a98e4fd6659bddb909d8f17;p=hopm.git - Use reserved example domains as specified in rfc2606 git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@5109 82007160-df01-0410-b94d-b575c5fd34c7 --- diff --git a/doc/reference.conf b/doc/reference.conf index 18fe528..5c3ca79 100644 --- a/doc/reference.conf +++ b/doc/reference.conf @@ -89,7 +89,7 @@ irc { * Hostname (or IP) of the IRC server which HOPM will monitor * connections on. */ - server = "myserver.somenetwork.org"; + server = "irc.example.org"; /* * Password used to connect to the IRC server (PASS) @@ -528,7 +528,7 @@ scanner { * If your ircd supports a more specific line (see below), * using it will reduce false positives. */ - target_string = ":server.yournetwork.org NOTICE * :*** Looking up your hostname"; + target_string = ":irc.example.org NOTICE * :*** Looking up your hostname"; /* * If you try to connect too fast, you'll be throttled by your own diff --git a/src/config.c b/src/config.c index 0a5c771..570199b 100644 --- a/src/config.c +++ b/src/config.c @@ -125,7 +125,7 @@ void config_setup() IRCItem->oper = xstrdup("undefined"); IRCItem->username = xstrdup("hopm"); IRCItem->realname = xstrdup("Hybrid Open Proxy Monitor"); - IRCItem->server = xstrdup("myserver.blitzed.org"); + IRCItem->server = xstrdup("irc.example.org"); IRCItem->vhost = xstrdup(""); IRCItem->connregex = xstrdup("\\*\\*\\* Notice -- Client connecting: ([^ ]+) \\(([^@]+)@([^\\)]+)\\) \\[([0-9\\.]+)\\].*"); IRCItem->kline = xstrdup("KLINE %u@%h :Open Proxy found on your host.");