about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2003-04-29 12:36:09 +0000
committerAlexander Barton <alex@barton.de>2003-04-29 12:36:09 +0000
commite541da2a8fb12a19b819f06d67403c094e474206 (patch)
tree34722b6d6936ce6826219f3c7bee14ec5d8ad802
parente55399c6670173afffa0a8b334d77f0d44710b43 (diff)
downloadngircd-e541da2a8fb12a19b819f06d67403c094e474206.tar.gz
ngircd-e541da2a8fb12a19b819f06d67403c094e474206.zip
"ServerName" is checked better now: a dot (".") is required.
-rw-r--r--ChangeLog3
-rw-r--r--doc/sample-ngircd.conf5
-rw-r--r--src/ngircd/conf.c13
3 files changed, 17 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 5ff1171e..2b8845a6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,7 @@ ngIRCd CVS-HEAD
   - (none)
 
 ngIRCd 0.7.0
+  - "ServerName" is checked better now: a dot (".") is required.
   - The KILL comand verifies and logs more parameters.
 
   ngIRCd 0.7.0-pre2
@@ -450,4 +451,4 @@ ngIRCd 0.0.1, 31.12.2001
 
 
 -- 
-$Id: ChangeLog,v 1.199 2003/04/29 12:19:20 alex Exp $
+$Id: ChangeLog,v 1.200 2003/04/29 12:36:09 alex Exp $
diff --git a/doc/sample-ngircd.conf b/doc/sample-ngircd.conf
index 186a4ed6..ca5c2992 100644
--- a/doc/sample-ngircd.conf
+++ b/doc/sample-ngircd.conf
@@ -1,4 +1,4 @@
-# $Id: sample-ngircd.conf,v 1.21 2003/04/27 11:45:27 alex Exp $
+# $Id: sample-ngircd.conf,v 1.22 2003/04/29 12:36:09 alex Exp $
 
 #
 # This is a sample configuration file for the ngIRCd, which must adept to
@@ -16,7 +16,8 @@
 	# configuration of the server, like the server name and the ports
 	# on which the server should be listening.
 	
-	# Server name in the IRC-network
+	# Server name in the IRC network, must contain at least one dot
+	# (".") and be unique in the IRC network.
 	Name = irc.the.net
 	
 	# Info text of the server. This will be shown by WHOIS and
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 9587b5fa..00b5bb79 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -14,7 +14,7 @@
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conf.c,v 1.58 2003/04/27 11:46:52 alex Exp $";
+static char UNUSED id[] = "$Id: conf.c,v 1.59 2003/04/29 12:36:09 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
@@ -837,6 +837,17 @@ Validate_Config( BOOLEAN Configtest )
 			exit( 1 );
 		}
 	}
+	
+	if( ! strchr( Conf_ServerName, '.' ))
+	{
+		/* No dot in server name! */
+		Config_Error( LOG_ALERT, "Invalid server name configured in \"%s\" ('ServerName'): Dot missing!", NGIRCd_ConfFile );
+		if( ! Configtest )
+		{
+			Config_Error( LOG_ALERT, "%s exiting due to fatal errors!", PACKAGE_NAME );
+			exit( 1 );
+		}
+	}
 
 #ifdef STRICT_RFC
 	if( ! Conf_ServerAdminMail[0] )