c ++ gsoap SO_REUSEADDR

时间:2014-01-21 14:43:18

标签: c++ gsoap

我正在尝试构建一个多线程的calc ++ webservice。在原始的例子的基础上。所以我想在我的二进制文件中构建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 */
}

我做错了什么? :其中

1 个答案:

答案 0 :(得分:1)

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

使用-i选项CalculatorService继承自soap结构,然后你应该使用:

 c.bind_flags |= SO_REUSEADDR;

使用-j选项CalculatorService包含一个soap结构,然后你应该使用:

 c.soap->bind_flags |= SO_REUSEADDR;

考虑到CalculatorService包含soap结构,似乎你使用-i选项。