我已经为C++的多读制笔服务器撰写了这一课程,并编集了该课程。
g++ -o server server.cpp -lpthread
BUT • 我发现以下错误:
invalid conversion from "void*" to "void* (*)(void*)"
initializing argument 3 of "int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)"
What should I do ?? My Code ::
#include "PracticalSocket.h"
#include <iostream>
#include <cstdlib>
#include <pthread.h>
using namespace std;
class MultiThreadedServer{
private:
static const int RCVBUFSIZE = 1024;
string agent_ip;
int agent_port;
public:
string startServer(unsigned short port, string agentIP, int agentPort)
{
agent_ip = agentIP;
agent_port=agentPort;
try
{
TCPServerSocket servSock(port); // Socket descriptor for server
for (;;)
{
// Create separate memory for client argument
TCPSocket *clntSock = servSock.accept();
pthread_t threadID;
if (pthread_create(&threadID, NULL, (void*) &ThreadMain,(void *) &clntSock) != 0)
{
cerr << "Unable to create thread" << endl;
exit(1);
}
}
}
catch (SocketException &e)
{
cerr << e.what() << endl;
exit(1);
}
// NOT REACHED
}
// TCP client handling function
void static HandleTCPClient(TCPSocket *sock)
{
cout << "Handling client ";
try
{
cout<<"Foreign address: "<< sock->getForeignAddress() << ":";
}
catch (SocketException &e)
{
cerr << "Unable to get foreign address" << endl;
}
try
{
cout<<"Foreign port: "<< sock->getForeignPort();
}
catch (SocketException &e)
{
cerr << "Unable to get foreign port" << endl;
}
cout << " with thread " << pthread_self() << endl;
char echoBuffer[RCVBUFSIZE];
int recvMsgSize;
while ((recvMsgSize = sock->recv(echoBuffer, RCVBUFSIZE)) > 0)
{
cout<<"echoBuffer::::"<<echoBuffer;
//sock->send(echoBuffer, recvMsgSize);
}
// Destructor closes socket
}
static void ThreadMain(void *clntSock)
{
// Guarantees that thread resources are deallocated upon return
pthread_detach(pthread_self());
// Extract socket file descriptor from argument
HandleTCPClient((TCPSocket *) clntSock);
delete (TCPSocket *) clntSock;
//return NULL;
}
};