By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2167
Collapse All | Expand All

(-)a/ksmserver/server.cpp (+4 lines)
Lines 235-240 void KSMCloseConnectionProc ( Link Here
235
    if ( count )
235
    if ( count )
236
        SmFreeReasons( count, reasonMsgs );
236
        SmFreeReasons( count, reasonMsgs );
237
    IceConn iceConn = SmsGetIceConnection( smsConn );
237
    IceConn iceConn = SmsGetIceConnection( smsConn );
238
printf("[DEBUG 100.0] Going to call IceCloseConnection iceConn->inbuf: %p smsConn->client_id: '%s'\n", iceConn->inbuf, SmsClientID(smsConn)); fflush(stdout);
238
    SmsCleanUp( smsConn );
239
    SmsCleanUp( smsConn );
239
    IceSetShutdownNegotiation (iceConn, False);
240
    IceSetShutdownNegotiation (iceConn, False);
240
    IceCloseConnection( iceConn );
241
    IceCloseConnection( iceConn );
Lines 770-777 void KSMServer::processData( int /*socket*/ ) Link Here
770
        if ( it.current() ) {
771
        if ( it.current() ) {
771
            SmsConn smsConn = it.current()->connection();
772
            SmsConn smsConn = it.current()->connection();
772
            deleteClient( it.current() );
773
            deleteClient( it.current() );
774
printf("[DEBUG 101.0] Going to call SmsCleanUp smsConn->client_id: '%s'\n", SmsClientID(smsConn)); fflush(stdout);
773
            SmsCleanUp( smsConn );
775
            SmsCleanUp( smsConn );
774
        }
776
        }
777
printf("[DEBUG 101.1] Going to call IceCloseConnection iceConn->inbuf: %p\n", iceConn->inbuf); fflush(stdout);
775
        (void) IceCloseConnection( iceConn );
778
        (void) IceCloseConnection( iceConn );
776
    }
779
    }
777
}
780
}
Lines 819-824 void KSMServer::newConnection( int /*socket*/ ) Link Here
819
            kdDebug( 1218 ) << "IO error opening ICE Connection!" << endl;
822
            kdDebug( 1218 ) << "IO error opening ICE Connection!" << endl;
820
        else
823
        else
821
            kdDebug( 1218 ) << "ICE Connection rejected!" << endl;
824
            kdDebug( 1218 ) << "ICE Connection rejected!" << endl;
825
printf("[DEBUG 102.0] Going to call IceCloseConnection iceConn->inbuf: %p\n", iceConn->inbuf); fflush(stdout);
822
        (void )IceCloseConnection (iceConn);
826
        (void )IceCloseConnection (iceConn);
823
        return;
827
        return;
824
    }
828
    }

Return to bug 2167