From 970b35d4c7bc7ffa2a2348bb8791c2a84fbfc165 Mon Sep 17 00:00:00 2001 From: GandC Snow Date: Mon, 25 Oct 2021 11:05:34 +0300 Subject: [PATCH] fix --- server.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/server.py b/server.py index 1f01ab8..b427ba1 100644 --- a/server.py +++ b/server.py @@ -3,22 +3,23 @@ from irc import client, connection from socket import socket, AF_INET, SOCK_DGRAM -from os import chdir, path +#from os import chdir, path from threading import Thread -host = '10.10.13.8' -port = '7777' +host = '10.10.13.2' +port = 7747 addr = (host,port) -irc_host = 's1.tomasgl.piv' -irc_port = '6667' +irc_host = '10.200.201.4' +irc_port = 6667 irc_chat_name = '#notifications' irc_bot_nickname = 'GandC_LogMon_Bot' + s = socket(AF_INET, SOCK_DGRAM) # Socket creation s.bind(addr) # Bind socket to ip -chdir(path.dirname(path.abspath(__file__))) +#chdir(path.dirname(path.abspath(__file__))) def on_connect(connection, event): connection.mode(irc_bot_nickname, '+B') @@ -32,7 +33,7 @@ def on_disconnect(connection, event): reactor = client.Reactor() irc = reactor.server() -irc.connect(irc_host, int(irc_port), irc_bot_nickname) +irc.connect(irc_host, irc_port, irc_bot_nickname) irc.add_global_handler("welcome", on_connect) irc.add_global_handler("join", on_join) irc.add_global_handler('disconnect', on_disconnect)