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

Log outbound initial handshake

parent 035d1725
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -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.
Finish editing this message first!
Please register or to comment