Bonjour à tous...
Voilà mon IriX se deconnect en "connexion rest by peer" ou en "Write error, closing link" des que Eva xclose un salon... J'ai pourtant chercher dans la proc Eva ci-dessous, mais rien à faire ! je ne sais pas de quoi cela vien.
Et je joint aussi les links d'IriX & Eva dans "ircd.conf"
Avez vous la moindre idée du problème ? Merci d'avance...
Cordialement, IluZi0n
Voilà mon IriX se deconnect en "connexion rest by peer" ou en "Write error, closing link" des que Eva xclose un salon... J'ai pourtant chercher dans la proc Eva ci-dessous, mais rien à faire ! je ne sais pas de quoi cela vien.
Citation :bind msg - xclose msg:xclose
proc msg:xclose {nick uhost hand arg} {
global eva
if {![isauth $nick] || ![matchattr $hand A]} {
avertmsg $nick
return 0
}
set salon [lindex $arg 0]
if {$salon=="" || ![string match *#* $salon]} {
send ":$eva(nick) NOTICE $nick :\2Utilisation:\2 xclose <#salon>"
return 0
}
proc:xclose $salon $hand
}
# DCC
bind dcc - xclose dcc:xclose
proc dcc:xclose {nick idx arg} {
global eva
if {![matchattr $nick A]} {
avertdcc $nick
return 0
}
set salon [lindex $arg 0]
if {$salon=="" || ![string match *#* $salon]} {
putdcc $idx "\2Utilisation:\2 xclose <#salon>"
return 0
}
proc:xclose $salon $nick
}
# Proc
proc proc:xclose {chan by} {
global eva
set eva(xpermclose) "[fread xpermclose.db]"
if {$chan=="$eva(chan)" || $chan=="$eva(chanbot)" || $chan=="$eva(soho)" || [isindb $eva(xpermclose) $chan]!=-1} {return 0}
set eva(act) "1"
send ":$eva(nick) JOIN $chan x"
sendlog "4•1 XClosed 4•1 sur $chan - par $by"
send ":$eva(nick) MODE $chan +ov $eva(nick) $eva(nick)"
send ":$eva(nick) MODE $chan +imsnt"
send ":$eva(nick) TOPIC $chan :$eva(topic)"
send ":$eva(nick) WHO $chan"
xclose $chan
putlog2 "Xclose par $by : $chan"
}
Et je joint aussi les links d'IriX & Eva dans "ircd.conf"
Citation :######## Eva.IRCw.info (Geofront) ########
C:188.165.91.131:<password>:Eva.Service.info::90
N:188.165.91.131:<password>:Eva.Service.info::90
U:Eva.Service.info::*:*
H:*.*::Eva.Service.info:*
######## IriX.IRCw.info (CService) ########
C:188.165.91.131:<password>:IriX.IRCw.info::90
N:188.165.91.131:<password>:IriX.IRCw.info::90
U:IriX.IRCw.info::*:*
H:*.*::IriX.IRCw.info:*
Avez vous la moindre idée du problème ? Merci d'avance...
Cordialement, IluZi0n