Changeset 1039

Show
Ignore:
Timestamp:
08/30/07 01:45:37 (1 year ago)
Author:
kris
Message:

disconnect() renamed detach()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/mango/net/http/server/HttpBridge.d

    r1037 r1039  
    9494                // close and destroy this conduit (socket) 
    9595                scope (exit) 
    96                        conduit.disconnect
     96                       conduit.detach
    9797 
    9898                // reset the (probably overridden) input and output 
  • trunk/mango/net/servlet/ServletResponse.d

    r1037 r1039  
    203203                            { 
    204204                            if (source) 
    205                                 source.disconnect
     205                                source.detach
    206206                            } 
    207207                return false; 
  • trunk/mango/net/util/KeepAliveServer.d

    r1037 r1039  
    120120 
    121121                // make sure we close the conduit ~ the client will see this also 
    122                 conduit.disconnect
     122                conduit.detach
    123123        } 
    124124 
  • trunk/mango/xml/rpc/Client.d

    r1037 r1039  
    428428 
    429429        client.getRequestHeaders.add (HttpHeader.ContentLength, Integer.format(new char[15], buff.readable())); 
    430         scope(exit) client.disconnect
     430        scope(exit) client.detach
    431431 
    432432        IBuffer respBuff = client.open((IBuffer outBuffer){outBuffer.append(buff);});