libmicrohttpd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [libmicrohttpd] libmicrohttpd 0.9.49 released


From: silvioprog
Subject: Re: [libmicrohttpd] libmicrohttpd 0.9.49 released
Date: Tue, 12 Apr 2016 11:37:03 -0300

It worked fine here on Windows. I don't know how C++ declares pointers, but looking at this line:

    struct MHD_Daemon *daemon = MHD_start_daemon( daemon_flags, 0,
                                                  http_AcceptPolicyCallback, NULL,
                                                  http_AccessHandlerCallback, NULL, ...

You should use something like this:

    struct MHD_Daemon *daemon = MHD_start_daemon( daemon_flags, 0,
                                                  &http_AcceptPolicyCallback, NULL,
                                                  &http_AccessHandlerCallback, NULL, ...

Try the "A minimal example" available at MHD home page: https://www.gnu.org/software/libmicrohttpd/ .

On Tue, Apr 12, 2016 at 11:10 AM, Markus Doppelbauer <address@hidden> wrote:
Hello,

Thanks a lot.
For me, 0.9.49 does not work - it never enters the
"AccessHandlerCallback()" handler. I have attached
a small testcase.

Steps to reproduce:
g++ -o testmhd test.cpp -I/tmp/libmicrohttpd-0.9.49/src/include/ -L/tmp/libmicrohttpd-0.9.49/src/microhttpd/.libs/ -lmicrohttpd
LD_LIBRARY_PATH=/tmp/libmicrohttpd-0.9.49/src/microhttpd/.libs/ ./testmhd                                                      
wget -O /dev/null 127.0.0.1:8080

--
Silvio Clécio

reply via email to

[Prev in Thread] Current Thread [Next in Thread]