本文整理汇总了C++中StreamSocket::receive方法的典型用法代码示例。如果您正苦于以下问题:C++ StreamSocket::receive方法的具体用法?C++ StreamSocket::receive怎么用?C++ StreamSocket::receive使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StreamSocket
的用法示例。
在下文中一共展示了StreamSocket::receive方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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: handle
void handle(StreamSocket& sock) override {
while(true) {
cout << "handle called.\n";
string rcvd = sock.receive();
cout << "received data\n";
sock.send_all(rcvd);
}
}
示例3: main
int main() {
const short port = 5000;
ServerSocket wsock(5000);
std::cout << "Listening on port " << port << "\n\n";
//Serves a single client
StreamSocket sock = wsock.accept();
string rcvd;
do {
rcvd = sock.receive(1024);
sock.send_all(rcvd);
}
while (rcvd.size() > 0);
std::cout << "Connection closed" << "\n";
return 0;
}