Hello,

I've been trying to make something to send data to a website (localhost for the moment). What I have is (this is for testing purpose):

Code:
  
alias socktest {
  /sockopen Ysondre 127.0.0.1 1337
}

on *:sockopen:Ysondre:{ 
  notice $me $sockname connection established!
  sockwrite -n $sockname POST /test.php HTTP/1.1
}


When I type /socktest I get the notification but I also get a * /sockwrite: 'Ysondre' not connected (line 13, script1.mrc).
I don't get it, the sock is opened, but not the connection?

Anyone can help me?
And yes, I made my webserver on port 1337 cause my ISP blocks 80 frown