My code is as follows:
Debugging tells me that the:Code:void CConnection::ConnectL() { iState = EConnecting; User::LeaveIfError( iSocket.Open( iSocketServer, KAfInet, KSockStream, KProtocolInetTcp ) ); // Set port destAddr.SetFamily(KAfInet); destAddr.SetAddress(INET_ADDR(131,204,27,5)); destAddr.SetPort(5000); iSocket.Connect(destAddr,iStatus); #ifdef __WINS__ User::After( 1 ); // Fix to allow emulator client to connect to server #endif SetActive(); }
User::LeaveIfError( iSocket.Open( iSocketServer, KAfInet, KSockStream, KProtocolInetTcp ) );
Throws a KERN-EXEC 3 error.
From this snippet, is there anything that jumps out at you guys that could be the cause?
Thanks!




