(file) Return to HTTPAcceptor.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/HTTPAcceptor.cpp between version 1.72.8.1 and 1.73

version 1.72.8.1, 2005/10/21 17:34:38 version 1.73, 2005/09/28 14:46:22
Line 149 
Line 149 
 #endif #endif
       Mutex _connection_mut;       Mutex _connection_mut;
  
       Sint32 socket;        PEGASUS_SOCKET socket;
       Array<HTTPConnection*> connections;       Array<HTTPConnection*> connections;
 }; };
  
Line 651 
Line 651 
  
         // Destroy the connection (causing it to close):         // Destroy the connection (causing it to close):
  
         while (connection->refcount.get()) { }          while (connection->refcount.value()) { }
         delete connection;         delete connection;
      }      }
  
Line 694 
Line 694 
        address_size = sizeof(struct sockaddr_in);        address_size = sizeof(struct sockaddr_in);
    }    }
  
    Sint32 socket = accept(_rep->socket, accept_address, &address_size);     PEGASUS_SOCKET socket = accept(_rep->socket, accept_address, &address_size);
  
    delete accept_address;    delete accept_address;
  


Legend:
Removed from v.1.72.8.1  
changed lines
  Added in v.1.73

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2