即时通讯试图建立一个多线程的Calc++ Web服务。在原始示例的基础上。所以我想在我的二进制文件中构建SO_REUSEADDR。

int main(int argc, char* argv[])
{
    CalculatorService c;
    int port = atoi(argv[1]) ;
    printf("Starting to listen on port %d\n", port) ;
    c.soap->bind_flags |= SO_REUSEADDR;
    if (soap_valid_socket(c.bind( NULL, port, 100)))
    {
        CalculatorService *tc ;
        pthread_t tid;
        for (;;)
        {
            if (!soap_valid_socket(c.accept()))
                return c.error;
            tc = c.copy() ; // make a safe copy
            if (tc == NULL)
                break;
            pthread_create(&tid, NULL, (void*(*)(void*))process_request, (void*)tc);

            printf("Created a new thread %ld\n", tid) ;
        }
    }
    else
    {
        return c.error;
    }
    printf("hi");
}


void *process_request(void *calc)
{
   pthread_detach(pthread_self());
   CalculatorService *c = static_cast<CalculatorService*>(calc) ;
   c->serve() ;
   c->destroy() ;
   delete c ;
   return NULL;
}

如果我尝试用:
g++  -o calcmulti main.cpp stdsoap2.cpp soapC.cpp soapCalculatorService.cpp -lpthread

我懂了
main.cpp: In function 'int main(int, char**)':
main.cpp:13: error: invalid use of 'struct soap'

soap结构位于stdsoap2.h中
struct SOAP_STD_API soap
{
    int bind_flags;               /* bind() SOL_SOCKET sockopt flags, e.g. set to SO_REUSEADDR to enable reuse */
}

我究竟做错了什么? :<

最佳答案

这取决于您使用soap2cpp生成器使用的选项。

使用-i选项CalculatorService从soap结构继承,则应使用:

 c.bind_flags |= SO_REUSEADDR;

使用-j选项CalculatorService包含一个soap结构,则应使用:
 c.soap->bind_flags |= SO_REUSEADDR;

考虑到CalculatorService包含一个soap结构,您似乎使用了-i选项。

10-07 16:45