Skip to content
Snippets Groups Projects
Commit 5ffa1bb0 authored by Randy Sommerfeld's avatar Randy Sommerfeld
Browse files

Log outbound initial handshake

parent 1e9c2c16
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -288,8 +288,11 @@ function handle_outbound_server_connect() {
if (this.is_connected) {
umode_notice(USERMODE_ROUTING,"Routing","Connected! Sending info...");
log(LOG_DEBUG,format("->[UNREG]: PASS %s :TS", this.cline.password));
this.send(format("PASS %s :TS\r\n", this.cline.password));
log(LOG_DEBUG,format("->[UNREG]: CAPAB %s", SERVER_CAPAB));
this.send("CAPAB " + SERVER_CAPAB + "\r\n");
log(LOG_DEBUG,format("->[UNREG]: SERVER %s 1 :%s", ServerName, ServerDesc));
this.send("SERVER " + ServerName + " 1 :" + ServerDesc +"\r\n");
id = Generate_ID();
Unregistered[id] = new Unregistered_Client(id,this);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment