本文整理汇总了C++中StreamSocket::getRemotePort方法的典型用法代码示例。如果您正苦于以下问题:C++ StreamSocket::getRemotePort方法的具体用法?C++ StreamSocket::getRemotePort怎么用?C++ StreamSocket::getRemotePort使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StreamSocket
的用法示例。
在下文中一共展示了StreamSocket::getRemotePort方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: recvDataLoop
static void* recvDataLoop(void *arg)
{
StreamSocket *ss =(StreamSocket *)arg;
if(NULL == ss)
{
cerr << "recvDataLoop arg is NULL"<<__LINE__<<endl;
return NULL;
}
cout <<"###@@@enter [email protected]@@@### ip:"<< ss->getRemoteIP()<<":"<< ss->getRemotePort()<<endl;
StreamSocket sock = StreamSocket(ss->getRemoteSocket(), ss->getRemoteIP(), ss->getRemotePort());
char buff[RECV_BUFFSIZE];
int len;
while(1)
{
len = sock.receive(sock.getRemoteSocket(), buff, sizeof(buff), 45);
if(len > 0)
{
if(-1 == streamSocketCommandProcess(sock, buff))
{
cout<<"\n nsStreamSocketCommandProcess send fail!:"<<endl;
// break;
}
}
}
cerr<<"\n###########@@@@@@@@@ exit @@@@@@@@############### \n";
sock.close(sock.getRemoteSocket());
return NULL;
}
示例2: streamSocketCommandProcess
static int streamSocketCommandProcess(StreamSocket &ssocket, char *command)
{
if('\0' == command[0]) //?????????
{
return 0xff;
}
StreamPrivatePacket spp;
vector<char *> strvec = spp.parse(command, STREAM_PACKET_SPLIT);
if(strvec.size() <= 0)
{
cerr<<"streamSocketCommandProcess strvec.size() <= 0" <<endl;
return 0xfe;
}
int ret = 0;
string response;
switch(atoi(strvec[0]))
{
case EN_CMD_ISONLINE:
response=strvec[0];
response += ">>";
response += ONLINE;
cout << response << endl;
//ret = ssocket.send(ssocket.getRemoteSocket(), response);
break;
case EN_CMD_MEDIA_PLAY:
cout << "EN_CMD_MEDIA_PLAY"<< endl;
break;
case EN_CMD_KEY:
cout << "EN_CMD_KEY"<< endl;
//deal with key
break;
case EN_CMD_MUSE:
{
cout << "EN_CMD_MUSE"<< endl;
//deal with mouse
}
break;
case EN_CMD_INPUTSTR:
cout << "EN_CMD_INPUTSTR"<< endl;
break;
default:
cout<<"address is" << ssocket.getRemoteIP();
cout<<":" << ssocket.getRemotePort()<< endl;
cout <<"command *" <<command << endl;
cout<< strvec.size()<<"@ " << strvec[0]<< endl;
break;
}
return ret;
}