ofxHttpServer icon indicating copy to clipboard operation
ofxHttpServer copied to clipboard

http server openframeworks addon based on libmicrohttpd

Results 3 ofxHttpServer issues
Sort by recently updated
recently updated
newest added

Hello I try tu compile the example under ofx0.10.1 / ubuntu 18.04 64bits I've an error : ``` ServerExample/src/ofApp.cpp:17:27: error: no matching function for call to ‘ofxHTTPServer::setListener(ofApp&)’ server->setListener(*this); ^ In...

The embedded libmicrohttpd server throws a bunch of errors for me: ``` Ld bin/buttCancerDebug.app/Contents/MacOS/buttCancerDebug normal i386 cd /Users/jedahan/Dropbox/code/jedahan/openFrameworks/apps/myApps/buttCancer /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -arch i386 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk -L/Users/jedahan/Dropbox/code/jedahan/openFrameworks/apps/myApps/buttCancer/bin -F/Users/jedahan/Dropbox/code/jedahan/openFrameworks/apps/myApps/buttCancer/bin -F/Users/jedahan/Dropbox/code/jedahan/openFrameworks/apps/myApps/buttCancer/../../../libs/glut/lib/osx -filelist /Users/jedahan/Library/Developer/Xcode/DerivedData/buttCancer-bmguzlpjlvbkooapdgvrepxbxubw/Build/Intermediates/buttCancer.build/Debug/buttCancer.build/Objects-normal/i386/buttCancerDebug.LinkFileList -dead_strip ../../../libs/poco/lib/osx/PocoCrypto.a...

I see that you change in your last commit https://github.com/arturoc/ofxHttpServer/commit/5560dd5413cc543113da0dba4a9f9b1af04ff834 the way of registering events handler. but in the example, the syntax is still using ofAddListener(server->getEvent,this,&testApp::getRequest); I tryied to use...