Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 187525
Collapse All | Expand All

(-)src-native-new/src/transport/TPTPClientCompTL/Connect2AC.c (+18 lines)
Lines 1655-1660 Link Here
1655
			cleanPipeUp(&masterPipe);
1655
			cleanPipeUp(&masterPipe);
1656
1656
1657
			return 0;
1657
			return 0;
1658
		} else if ( isEqualString( cmdName, "agentDeregistered" ) ) {
1659
			/** Command is not supported by the Connect2AC code of ClientCTL. */
1660
			TPTP_LOG_DEBUG_MSG2( stateData, "Client compatibility transport layer received a command that that is recognized (but unsupported). (iid: %s  cmd: %s)", "org.eclipse.tptp.agentManager", cmdName );
1661
			
1662
			return 0;			
1658
		}
1663
		}
1659
		else
1664
		else
1660
		{
1665
		{
Lines 2240-2245 Link Here
2240
			TPTP_LOG_WARNING_MSG1( stateData, "Client compatibility transport layer received an unrecognized error command: %s", cmdName );
2245
			TPTP_LOG_WARNING_MSG1( stateData, "Client compatibility transport layer received an unrecognized error command: %s", cmdName );
2241
			return -1;
2246
			return -1;
2242
		}
2247
		}
2248
	} else if ( isEqualString( interfaceID, EVENT_PROVIDER_IID))
2249
	{
2250
		if(isEqualString( cmdName, "listenerAccepted")) {
2251
2252
			/** Command is not supported by the Connect2AC code of ClientCTL. */
2253
			TPTP_LOG_DEBUG_MSG2( stateData, "Client compatibility transport layer received a command that that is recognized (but unsupported). (iid: %s  cmd: %s)", EVENT_PROVIDER_IID, cmdName );
2254
			return 0;			
2255
			
2256
		} else {
2257
			/* Log this as an unrecognized interface */
2258
			TPTP_LOG_ERROR_MSG2( stateData, "Client compatibility transport layer received an unrecognized command, iid: %s  cmd: %s", EVENT_PROVIDER_IID, cmdName );
2259
			return -1;			
2260
		}
2243
	}
2261
	}
2244
	else
2262
	else
2245
	{
2263
	{

Return to bug 187525