Relax identd checks to make it more compatible
This commit is contained in:
parent
4b75b42597
commit
a9aac1648c
@ -56,11 +56,8 @@ class Identification {
|
||||
}
|
||||
|
||||
for (const connection of this.connections.values()) {
|
||||
if (connection.socket.remoteAddress === socket.remoteAddress
|
||||
&& connection.socket.remotePort === fport
|
||||
&& connection.socket.localPort === lport
|
||||
&& connection.socket.localAddress === socket.localAddress) {
|
||||
return socket.write(`${lport}, ${fport} : USERID : UNIX : ${connection.user}\r\n`);
|
||||
if (connection.socket.remotePort === fport && connection.socket.localPort === lport) {
|
||||
return socket.write(`${lport}, ${fport} : USERID : TheLounge : ${connection.user}\r\n`);
|
||||
}
|
||||
}
|
||||
|
||||
@ -91,9 +88,7 @@ class Identification {
|
||||
let file = "# Warning: file generated by The Lounge: changes will be overwritten!\n";
|
||||
|
||||
this.connections.forEach((connection) => {
|
||||
file += `to ${connection.socket.remoteAddress}`
|
||||
+ ` fport ${connection.socket.remotePort}`
|
||||
+ ` from ${connection.socket.localAddress}`
|
||||
file += `fport ${connection.socket.remotePort}`
|
||||
+ ` lport ${connection.socket.localPort}`
|
||||
+ ` { reply "${connection.user}" }\n`;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user