Ignore:
Timestamp:
2006/11/13 15:06:33 (20 years ago)
Author:
kakinaka
Message:

blank

Location:
temp/trunk/data/module
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/module/Net/Socket.php

    r8270 r8273  
    106106        } 
    107107 
     108        sfprintr($addr); 
    108109        if (!$addr) { 
    109110            return $this->raiseError('$addr cannot be empty'); 
  • temp/trunk/data/module/Request.php

    r8272 r8273  
    672672            $this->_notify('connect'); 
    673673            $this->_sock =& new Net_Socket(); 
     674                    sfprintr($this->_sock); 
     675 
    674676            $err = $this->_sock->connect($host, $port, null, $this->_timeout, $this->_socketOptions); 
    675677        } 
    676678        PEAR::isError($err) or $err = $this->_sock->write($this->_buildRequest()); 
    677         sfprintr($err); 
    678         sfprintr($this->_sock); 
    679679 
    680680        if (!PEAR::isError($err)) { 
Note: See TracChangeset for help on using the changeset viewer.