import socket
import threading
# Proxy sunucusu ayarları
PROXY_HOST = '0.0.0.0'
PROXY_PORT = 6667
# IRC sunucusu ayarları
IRC_HOST = 'irc.example.com'
IRC_PORT = 6667
def handle_client(client_socket):
# IRC sunucusuna bağlan
irc_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)...