From: Andrey C. <sku...@us...> - 2006-06-06 13:29:41
|
Update of /cvsroot/eas-dev/eas/libeas In directory sc8-pr-cvs5.sourceforge.net:/tmp/cvs-serv3057/libeas Modified Files: protocol_raw.prg transportmanager.prg Log Message: Change logotype, fix db directory creation and some small tests Index: protocol_raw.prg =================================================================== RCS file: /cvsroot/eas-dev/eas/libeas/protocol_raw.prg,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- protocol_raw.prg 2 Jun 2006 14:32:45 -0000 1.1 +++ protocol_raw.prg 6 Jun 2006 13:29:30 -0000 1.2 @@ -113,11 +113,11 @@ do while( .T. ) if (session := tcpAccept( self:socket:handle, self:socket:aTimeOut )) != -1 // Create new session - eDebug(10, "Start session: ", session) + eDebug(10, "NETWORK: Start session: ", session) oSession := EASSession( self, session ) //session_open(oSession) threadId := start(@session_open(), oSession) // Begin new thread - eDebug(15, "Stop session") + eDebug(15, "NETWORK: Ready for new connection") endif sleep(0.01) enddo @@ -147,6 +147,7 @@ /* Thread function for session open */ static function session_open(session) + // Set global variables set deleted on set translate path off return session:open() Index: transportmanager.prg =================================================================== RCS file: /cvsroot/eas-dev/eas/libeas/transportmanager.prg,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- transportmanager.prg 2 Jun 2006 14:32:45 -0000 1.1 +++ transportmanager.prg 6 Jun 2006 13:29:30 -0000 1.2 @@ -146,9 +146,6 @@ static function connection_open() local oErr, ret, connection - set deleted on - set translate path off - oErr := errorBlock({|e| break(e) }) begin sequence eDebug(10, "Begin thread in connection_open()") |