Display IPv6 addresses as "[<addr>]" when accepting connections.
With this patch ngIRCd displays IPv6 addresses as "[<addr>]:<port>" when accepting new connections and later, if no successful DNS lookup could be made (or DNS is disabled altogether).
This commit is contained in:
parent
d9355d53f8
commit
54879b432b
|
@ -1261,14 +1261,21 @@ New_Connection( int Sock )
|
|||
My_Connections[new_sock].addr = new_addr;
|
||||
My_Connections[new_sock].client = c;
|
||||
|
||||
Log( LOG_INFO, "Accepted connection %d from %s:%d on socket %d.", new_sock,
|
||||
ip_str, ng_ipaddr_getport(&new_addr), Sock);
|
||||
|
||||
/* Hostnamen ermitteln */
|
||||
strlcpy(My_Connections[new_sock].host, ip_str, sizeof(My_Connections[new_sock].host));
|
||||
/* Set initial hostname to IP address. This becomes overwritten when
|
||||
* the DNS lookup is enabled and succeeds, but is used otherwise. */
|
||||
if (ng_ipaddr_af(&new_addr) != AF_INET)
|
||||
snprintf(My_Connections[new_sock].host,
|
||||
sizeof(My_Connections[new_sock].host), "[%s]", ip_str);
|
||||
else
|
||||
strlcpy(My_Connections[new_sock].host, ip_str,
|
||||
sizeof(My_Connections[new_sock].host));
|
||||
|
||||
Client_SetHostname(c, My_Connections[new_sock].host);
|
||||
|
||||
Log(LOG_INFO, "Accepted connection %d from %s:%d on socket %d.",
|
||||
new_sock, My_Connections[new_sock].host,
|
||||
ng_ipaddr_getport(&new_addr), Sock);
|
||||
|
||||
identsock = new_sock;
|
||||
#ifdef IDENTAUTH
|
||||
if (Conf_NoIdent)
|
||||
|
|
Loading…
Reference in New Issue