POL097[FreeBSD] AUX connection bug
Posted: Tue Feb 20, 2007 3:01 pm
Script:
When i connect to port 2003 ( telnet) POL reset connection
I cant send any data.
Pol Immediately breaks connection
In console
Started
<AuxConnection>
Help pls. Fix faster...
Code: Select all
------------
#cat auxsvc.cfg
AuxService
{
Port 2003
Script reg_aux
}
#cat reg_aux.src
use uo;
use os;
program Register(connection)
print("Started");
var ev;
print("Connection object:"+connection);
while(connection)
print("Start While:"+connection);
ev := os::wait_for_event(60);
print(ev);
endwhile
endprogram
When i connect to port 2003 ( telnet) POL reset connection
Code: Select all
telnet localhost 2003
Trying 127.0.0.1...
Connected to localhost
Escape character is '^]'.
Connection closed by foreign host.
Pol Immediately breaks connection
In console
Started
<AuxConnection>
Help pls. Fix faster...