about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2010-12-02 13:40:08 +0100
committerAlexander Barton <alex@barton.de>2010-12-02 13:40:08 +0100
commit79ca5fe04d0081468aa09cf0a7caca45a45b9864 (patch)
tree5f22665662094d4d31d1323e04c705a26e362124
parent60bb40d67a8d7c1e38a5d8ca2b7968cf08706008 (diff)
downloadngircd-79ca5fe04d0081468aa09cf0a7caca45a45b9864.tar.gz
ngircd-79ca5fe04d0081468aa09cf0a7caca45a45b9864.zip
Enhance log messages when establishing server links a little bit
-rw-r--r--src/ngircd/conn.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
index a92f99f7..9daca853 100644
--- a/src/ngircd/conn.c
+++ b/src/ngircd/conn.c
@@ -1774,6 +1774,9 @@ Check_Servers(void)
 		}
 
 		/* Okay, try to connect now */
+		Log(LOG_NOTICE,
+		    "Preparing to establish a new server link for \"%s\" ...",
+		    Conf_Server[i].name);
 		Conf_Server[i].lasttry = time_now;
 		Conf_Server[i].conn_id = SERVER_WAIT;
 		assert(Proc_GetPipeFd(&Conf_Server[i].res_stat) < 0);
@@ -1798,8 +1801,9 @@ New_Server( int Server , ng_ipaddr_t *dest)
 		return;
 	}
 
-	Log( LOG_INFO, "Establishing connection to \"%s\", %s, port %d ... ",
-			Conf_Server[Server].host, ip_str, Conf_Server[Server].port );
+	Log(LOG_INFO, "Establishing connection for \"%s\" to \"%s\" (%s) port %d ... ",
+	    Conf_Server[Server].name, Conf_Server[Server].host, ip_str,
+	    Conf_Server[Server].port);
 
 	af_dest = ng_ipaddr_af(dest);
 	new_sock = socket(af_dest, SOCK_STREAM, 0);
@@ -1931,8 +1935,8 @@ Init_Socket( int Sock )
 	LogDebug("Setting IP_TOS on socket %d to IPTOS_LOWDELAY.", Sock);
 	if (setsockopt(Sock, IPPROTO_IP, IP_TOS, &value,
 		       (socklen_t) sizeof(value))) {
-		Log(LOG_ERR, "Can't set socket option IP_TOS: %s!",
-		    strerror(errno));
+		LogDebug("Can't set socket option IP_TOS: %s!",
+			 strerror(errno));
 		/* ignore this error */
 	}
 #endif