
-----------------------------------
ecliptical
Wed Jan 04, 2006 12:19 am

Custome Net.OpenURLConnection
-----------------------------------
Ok there are a few problems with the current Net.OpenURLConnection the main one being you CAN'T send your own HTTP commands (PUT,GET,OPTION..etc) i suspect this might be some sort of security feature since you could potentially make some nasty things anyway I'll assume you're responsible people. 

module gameServer
    export OpenURLConnection
    procedure OpenURLConnection (url : string)
        var line : string (1)
        var netStream : int
        netStream := Net.OpenConnection (url, 80)
        if netStream 