Hi to all!
Can i implement TCP protocol "thru bluetooth" connected to my PC?
Can i use RSocket?
When i'm trying to connect to PC using RSocket "choose access point" ui appears. Can i avoid this? Thanks. Here is an example code (port and IP addresses are correct):
RSocketServ ss;
RSocket socket;
_LIT(KRasAddr,"xxx.xxx.xxx.xxx");
const TInt KEchoPort = xxxx;
TInetAddr destAddr;
destAddr.Input(KRasAddr);
destAddr.SetPort(KEchoPort);
ss.Connect();
resolver.Open(ss,KAfInet, KSockStream);
socket.Open(ss,KAfInet, KSockStream, KProtocolInetTcp);
socket.Connect(destAddr,iStatus);
I need to implement some kind of client application on phone and server application on PC.
Thanks!



