├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── README.git ├── README.md ├── configure.ac ├── cxxtools.spec ├── demo ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── README ├── arg-set.cpp ├── arg.cpp ├── async │ ├── Makefile.am │ ├── README.md │ ├── log.properties │ └── server.cpp ├── commandoutput.cpp ├── cxxlog.cpp ├── deserialization.cpp ├── dir.cpp ├── dlloader.cpp ├── dynamiccall.cpp ├── dynamicrpc.cpp ├── execLs.cpp ├── future.cpp ├── getini.cpp ├── hd.cpp ├── httpclient.cpp ├── httprequest.cpp ├── httpserver.cpp ├── iconv.cpp ├── insrv.cpp ├── json.cpp ├── jsonbeautify.cpp ├── log.cpp ├── logsh.cpp ├── md5sum.cpp ├── mime.cpp ├── mime2json.cpp ├── mimeextract.cpp ├── mimemultipart.cpp ├── msg.h ├── msgclient.cpp ├── msgserver.cpp ├── multifstream.cpp ├── netcat.cpp ├── netio.cpp ├── netmsg.cpp ├── pipestream.cpp ├── pool.cpp ├── regex.cpp ├── rpcaddclient.cpp ├── rpcasyncaddclient.cpp ├── rpcechoclient.cpp ├── rpcgenericclient.cpp ├── rpcparallelecho.cpp ├── rpcproxy.cpp ├── rpcserver.cpp ├── saml2.cpp ├── serialization.cpp ├── signals.cpp ├── splitter.cpp ├── ssl │ ├── Makefile.am │ ├── rpcJecho.cpp │ ├── rpcJserver.cpp │ ├── rpcbecho.cpp │ ├── rpcbserver.cpp │ ├── rpcjecho.cpp │ ├── rpcjserver.cpp │ ├── rpcxecho.cpp │ └── rpcxserver.cpp ├── sslshowcert.cpp ├── tcpsocket.cpp ├── timer-lambda.cpp ├── timer.cpp ├── uuencode.cpp ├── xmlmsgclient.cpp ├── xmlmsgserver.cpp └── xmlreader.cpp ├── doc ├── Doxyfile ├── Makefile.am ├── argument-parsing-howto.markdown ├── asyncronousIO.md ├── binaryrpc-howto.markdown ├── binserialization.txt ├── connection.md ├── csv-howto.markdown ├── json-howto.markdown ├── jsonquick-howto.markdown ├── jsonrpc-howto.markdown ├── logging-howto.markdown ├── propertiesquick-howto.markdown ├── rpc-howto.markdown ├── serialization-howto.markdown ├── timezone-howto.markdown └── xmlrpc-howto.markdown ├── include ├── Makefile.am └── cxxtools │ ├── application.h │ ├── arg.h │ ├── argin.h │ ├── argout.h │ ├── base64codec.h │ ├── base64stream.h │ ├── bin │ ├── bin.h │ ├── deserializer.h │ ├── formatter.h │ ├── parser.h │ ├── rpcclient.h │ ├── rpcserver.h │ └── serializer.h │ ├── byteorder.h │ ├── cache.h │ ├── callable.h │ ├── callable.tpp │ ├── cgi.h │ ├── char.h │ ├── charmapcodec.h │ ├── clock.h │ ├── composer.h │ ├── connectable.h │ ├── connection.h │ ├── constmethod.h │ ├── constmethod.tpp │ ├── conversionerror.h │ ├── convert.h │ ├── csv.h │ ├── csvdeserializer.h │ ├── csvparser.h │ ├── csvserializer.h │ ├── date.h │ ├── datetime.h │ ├── decomposer.h │ ├── delegate.h │ ├── delegate.tpp │ ├── deserializer.h │ ├── destructionsentry.h │ ├── directory.h │ ├── dlloader.h │ ├── doxygen.cfg │ ├── envsubst.h │ ├── event.h │ ├── eventloop.h │ ├── eventsink.h │ ├── eventsource.h │ ├── facets.h │ ├── fdstream.h │ ├── file.h │ ├── filedevice.h │ ├── fileinfo.h │ ├── formatter.h │ ├── function.h │ ├── function.tpp │ ├── hdstream.h │ ├── hexdump.h │ ├── hmac.h │ ├── http │ ├── client.h │ ├── messageheader.h │ ├── reply.h │ ├── replyheader.h │ ├── request.h │ ├── requestheader.h │ ├── responder.h │ ├── server.h │ └── service.h │ ├── ini.h │ ├── inideserializer.h │ ├── inifile.h │ ├── iniparser.h │ ├── iniserializer.h │ ├── invokable.h │ ├── invokable.tpp │ ├── iodevice.h │ ├── ioerror.h │ ├── iostream.h │ ├── iso8859_10codec.h │ ├── iso8859_11codec.h │ ├── iso8859_13codec.h │ ├── iso8859_14codec.h │ ├── iso8859_15codec.h │ ├── iso8859_16codec.h │ ├── iso8859_1codec.h │ ├── iso8859_2codec.h │ ├── iso8859_3codec.h │ ├── iso8859_4codec.h │ ├── iso8859_5codec.h │ ├── iso8859_6codec.h │ ├── iso8859_7codec.h │ ├── iso8859_8codec.h │ ├── iso8859_9codec.h │ ├── join.h │ ├── json.h │ ├── json │ ├── httpclient.h │ ├── httpservice.h │ ├── request.h │ ├── responder.h │ ├── rpcclient.h │ └── rpcserver.h │ ├── jsondeserializer.h │ ├── jsonformatter.h │ ├── jsonparser.h │ ├── jsonserializer.h │ ├── library.h │ ├── limitstream.h │ ├── log.h │ ├── log │ └── cxxtools.h │ ├── loginit.h │ ├── lrucache.h │ ├── main.h │ ├── md5.h │ ├── md5stream.h │ ├── method.h │ ├── method.tpp │ ├── mime.h │ ├── multifstream.h │ ├── net │ ├── addrinfo.h │ ├── bufferedsocket.h │ ├── net.h │ ├── tcpserver.h │ ├── tcpsocket.h │ ├── tcpstream.h │ ├── udp.h │ ├── udpstream.h │ └── uri.h │ ├── pipe.h │ ├── pool.h │ ├── posix │ ├── commandinput.h │ ├── commandoutput.h │ ├── daemonize.h │ ├── exec.h │ ├── fork.h │ ├── pipe.h │ └── pipestream.h │ ├── properties.h │ ├── propertiesdeserializer.h │ ├── propertiesfile.h │ ├── propertiesparser.h │ ├── propertiesserializer.h │ ├── ptrstream.h │ ├── ptrstreambuf.h │ ├── query_params.h │ ├── queue.h │ ├── quotedprintablecodec.h │ ├── quotedprintablestream.h │ ├── refcounted.h │ ├── regex.h │ ├── remoteclient.h │ ├── remoteexception.h │ ├── remoteprocedure.h │ ├── remoteprocedure.tpp │ ├── remoteprocedureva.h │ ├── remoteresult.h │ ├── resetter.h │ ├── scopedincrement.h │ ├── selectable.h │ ├── selector.h │ ├── serializationerror.h │ ├── serializationinfo.h │ ├── serviceprocedure.h │ ├── serviceprocedure.tpp │ ├── serviceregistry.h │ ├── settings.h │ ├── signal.h │ ├── signal.tpp │ ├── slot.h │ ├── slot.tpp │ ├── sourceinfo.h │ ├── split.h │ ├── sslcertificate.h │ ├── sslctx.h │ ├── stddevice.h │ ├── stdstream.h │ ├── streambuffer.h │ ├── streamcounter.h │ ├── string.h │ ├── string.tpp │ ├── stringstream.h │ ├── systemerror.h │ ├── tee.h │ ├── textbuffer.h │ ├── textcodec.h │ ├── textstream.h │ ├── time.h │ ├── timer.h │ ├── timespan.h │ ├── trim.h │ ├── typetraits.h │ ├── tz.h │ ├── unit │ ├── application.h │ ├── assertion.h │ ├── jsonreporter.h │ ├── registertest.h │ ├── reporter.h │ ├── test.h │ ├── testcase.h │ ├── testcontext.h │ ├── testfixture.h │ ├── testmain.h │ ├── testmethod.h │ ├── testprotocol.h │ └── testsuite.h │ ├── utf8.h │ ├── utf8codec.h │ ├── uuencode.h │ ├── void.h │ ├── win1252codec.h │ ├── xml │ ├── attribute.h │ ├── characters.h │ ├── comment.h │ ├── doctypedeclaration.h │ ├── enddocument.h │ ├── endelement.h │ ├── entityresolver.h │ ├── namespace.h │ ├── namespacecontext.h │ ├── node.h │ ├── processinginstruction.h │ ├── startelement.h │ ├── xml.h │ ├── xmldeserializer.h │ ├── xmlerror.h │ ├── xmlformatter.h │ ├── xmlreader.h │ ├── xmlserializer.h │ └── xmlwriter.h │ └── xmlrpc │ ├── client.h │ ├── errorcodes.h │ ├── formatter.h │ ├── httpclient.h │ ├── responder.h │ ├── scanner.h │ └── service.h ├── lgpl++.txt ├── m4 ├── acx_pthread.m4 ├── ax_check_compile_flag.m4 ├── ax_compiler_vendor.m4 ├── ax_cxx_compile_stdcxx_11.m4 └── iconv.m4 ├── pkgconfig ├── cxxtools-bin.pc.in ├── cxxtools-http.pc.in ├── cxxtools-json.pc.in ├── cxxtools-unit.pc.in ├── cxxtools-xmlrpc.pc.in └── cxxtools.pc.in ├── src ├── CMakeLists.txt ├── Makefile.am ├── Makefile.mingw ├── Makefile.win32 ├── addrinfo.cpp ├── addrinfoimpl.cpp ├── addrinfoimpl.h ├── application.cpp ├── applicationimpl.cpp ├── applicationimpl.h ├── base64codec.cpp ├── bin │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── deserializer.cpp │ ├── formatter.cpp │ ├── parser.cpp │ ├── responder.cpp │ ├── responder.h │ ├── rpcclient.cpp │ ├── rpcclientimpl.cpp │ ├── rpcclientimpl.h │ ├── rpcserver.cpp │ ├── rpcserverimpl.cpp │ ├── rpcserverimpl.h │ ├── scanner.cpp │ ├── scanner.h │ ├── serializer.cpp │ ├── socket.cpp │ ├── socket.h │ ├── worker.cpp │ └── worker.h ├── bufferedsocket.cpp ├── cgi.cpp ├── char.cpp ├── charmapcodec.cpp ├── clock.cpp ├── clockimpl.cpp ├── clockimpl.h ├── config.cmake.in ├── connectable.cpp ├── connection.cpp ├── conversionerror.cpp ├── convert.cpp ├── csvdeserializer.cpp ├── csvparser.cpp ├── csvserializer.cpp ├── date.cpp ├── datetime.cpp ├── dateutils.cpp ├── dateutils.h ├── decomposer.cpp ├── deserializer.cpp ├── directory.cpp ├── directoryimpl.cpp ├── directoryimpl.h ├── envsubst.cpp ├── error.cpp ├── error.h ├── eventloop.cpp ├── eventsink.cpp ├── eventsource.cpp ├── facets.cpp ├── fdstream.cpp ├── file.cpp ├── filedevice.cpp ├── filedeviceimpl.cpp ├── filedeviceimpl.h ├── fileimpl.cpp ├── fileimpl.h ├── fileinfo.cpp ├── formatter.cpp ├── hdstream.cpp ├── http │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── chunkedreader.cpp │ ├── chunkedreader.h │ ├── client.cpp │ ├── clientimpl.cpp │ ├── clientimpl.h │ ├── mapper.cpp │ ├── mapper.h │ ├── messageheader.cpp │ ├── notauthenticatedresponder.cpp │ ├── notauthenticatedresponder.h │ ├── notauthenticatedservice.cpp │ ├── notauthenticatedservice.h │ ├── notfoundresponder.cpp │ ├── notfoundresponder.h │ ├── notfoundservice.cpp │ ├── notfoundservice.h │ ├── parser.cpp │ ├── parser.h │ ├── request.cpp │ ├── responder.cpp │ ├── server.cpp │ ├── serverimpl.cpp │ ├── serverimpl.h │ ├── serverimplbase.h │ ├── service.cpp │ ├── socket.cpp │ ├── socket.h │ ├── worker.cpp │ └── worker.h ├── inideserializer.cpp ├── inifile.cpp ├── iniparser.cpp ├── iniserializer.cpp ├── iodevice.cpp ├── iodeviceimpl.cpp ├── iodeviceimpl.h ├── ioerror.cpp ├── iostream.cpp ├── iso8859_codec.cpp ├── json │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── httpclient.cpp │ ├── httpclientimpl.cpp │ ├── httpclientimpl.h │ ├── httpresponder.cpp │ ├── httpresponder.h │ ├── httpservice.cpp │ ├── responder.cpp │ ├── responder.h │ ├── rpcclient.cpp │ ├── rpcclientimpl.cpp │ ├── rpcclientimpl.h │ ├── rpcserver.cpp │ ├── rpcserverimpl.cpp │ ├── rpcserverimpl.h │ ├── scanner.cpp │ ├── scanner.h │ ├── socket.cpp │ ├── socket.h │ ├── worker.cpp │ └── worker.h ├── jsondeserializer.cpp ├── jsonformatter.cpp ├── jsonparser.cpp ├── library.cpp ├── libraryimpl.cpp ├── libraryimpl.h ├── log.cpp ├── md5.c ├── md5.h ├── md5stream.cpp ├── mime.cpp ├── multifstream.cpp ├── net.cpp ├── pipe.cpp ├── pipeimpl.cpp ├── pipeimpl.h ├── posix │ ├── commandinput.cpp │ ├── commandoutput.cpp │ ├── daemonize.cpp │ ├── fork.cpp │ ├── pipestream.cpp │ └── posixpipe.cpp ├── propertiesdeserializer.cpp ├── propertiesfile.cpp ├── propertiesparser.cpp ├── propertiesserializer.cpp ├── query_params.cpp ├── quotedprintablecodec.cpp ├── regex.cpp ├── remoteclient.cpp ├── selectable.cpp ├── selectableimpl.h ├── selector.cpp ├── selectorimpl.cpp ├── selectorimpl.h ├── serializationerror.cpp ├── serializationinfo.cpp ├── serviceregistry.cpp ├── settings.cpp ├── settingsreader.cpp ├── settingsreader.h ├── settingswriter.cpp ├── settingswriter.h ├── signal.cpp ├── sslcertificate.cpp ├── sslcertificateimpl.cpp ├── sslcertificateimpl.h ├── sslctx.cpp ├── sslctximpl.cpp ├── sslctximpl.h ├── stddevice.cpp ├── streambuffer.cpp ├── string.cpp ├── stringstream.cpp ├── systemerror.cpp ├── tcpserver.cpp ├── tcpserverimpl.cpp ├── tcpserverimpl.h ├── tcpsocket.cpp ├── tcpsocketimpl.cpp ├── tcpsocketimpl.h ├── tcpstream.cpp ├── tee.cpp ├── textbuffer.cpp ├── textcodec.cpp ├── textstream.cpp ├── time.cpp ├── timer.cpp ├── timespan.cpp ├── tz.cpp ├── udp.cpp ├── udpstream.cpp ├── unicode.h ├── unit │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── application.cpp │ ├── assertion.cpp │ ├── jsonreporter.cpp │ ├── reporter.cpp │ ├── test.cpp │ ├── testcase.cpp │ ├── testcontext.cpp │ ├── testprotocol.cpp │ └── testsuite.cpp ├── uri.cpp ├── utf8codec.cpp ├── uuencode.cpp ├── win1252codec.cpp ├── xml │ ├── characters.cpp │ ├── endelement.cpp │ ├── entityresolver.cpp │ ├── namespacecontext.cpp │ ├── startelement.cpp │ ├── xmldeserializer.cpp │ ├── xmlerror.cpp │ ├── xmlformatter.cpp │ ├── xmlreader.cpp │ ├── xmlserializer.cpp │ └── xmlwriter.cpp └── xmlrpc │ ├── CMakeLists.txt │ ├── Makefile.am │ ├── client.cpp │ ├── clientimpl.cpp │ ├── clientimpl.h │ ├── formatter.cpp │ ├── httpclient.cpp │ ├── httpclientimpl.cpp │ ├── httpclientimpl.h │ ├── responder.cpp │ ├── scanner.cpp │ └── service.cpp ├── test ├── .gitignore ├── CMakeLists.txt ├── Makefile.am ├── MyApp.pm ├── arg-test.cpp ├── base64-test.cpp ├── binrpc-test.cpp ├── binserializer-test.cpp ├── cache-test.cpp ├── cgitest.cpp ├── char-test.cpp ├── clock-test.cpp ├── color.h ├── commandoutput-test.cpp ├── convert-test.cpp ├── csvdeserializer-test.cpp ├── csvserializer-test.cpp ├── date-test.cpp ├── datetime-test.cpp ├── directory-test.cpp ├── envsubst-test.cpp ├── eventloop-test.cpp ├── file-test.cpp ├── fileinfo-test.cpp ├── inifile-test.cpp ├── iniparser-test.cpp ├── iniserialization-test.cpp ├── iso8859_1-test.cpp ├── iso8859_15-test.cpp ├── join-test.cpp ├── json-test.cpp ├── jsondeserializer-test.cpp ├── jsonechoclient.pl ├── jsonechoserver.pl ├── jsonrpc-test.cpp ├── jsonrpchttp-test.cpp ├── jsonserializer-test.cpp ├── limitstream-test.cpp ├── logbench.cpp ├── logconfiguration-test.cpp ├── lrucache-test.cpp ├── md5-test.cpp ├── mime-test.cpp ├── pool-test.cpp ├── properties-test.cpp ├── propertiesserializer-test.cpp ├── ptrstream-test.cpp ├── query_params-test.cpp ├── query_params_test.cpp ├── quotedprintable-test.cpp ├── regex-test.cpp ├── rpcbenchasyncclient.cpp ├── rpcbenchclient.cpp ├── rpcbenchserver.cpp ├── scopedincrement-test.cpp ├── serialization-test.cpp ├── serializationinfo-test.cpp ├── serializer-bench.cpp ├── sipath-test.cpp ├── split-test.cpp ├── string-test.cpp ├── tcpsockettest.cpp ├── test-main.cpp ├── time-test.cpp ├── timespan-test.cpp ├── trim-test.cpp ├── tz-test.cpp ├── uri-test.cpp ├── utf8-test.cpp ├── win1252-test.cpp ├── xmldeserializer-test.cpp ├── xmlreader-test.cpp ├── xmlrpc-test.cpp ├── xmlrpccallback-test.cpp └── xmlserializer-test.cpp ├── tools ├── CMakeLists.txt ├── Makefile.am ├── cxxtz.cpp └── siconvert.cpp └── utils ├── function-tpp.pl ├── git2changelog.pl ├── remoteprocedure.pl ├── rpcservice.pl ├── serviceprocedure.pl ├── serviceregistry.pl ├── setLicense.pl └── signal-tpp.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Tommi Mäkitalo 2 | Marc Boris Dürner 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | see README.md 2 | -------------------------------------------------------------------------------- /README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/README.git -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/configure.ac -------------------------------------------------------------------------------- /cxxtools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/cxxtools.spec -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/CMakeLists.txt -------------------------------------------------------------------------------- /demo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/Makefile.am -------------------------------------------------------------------------------- /demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/README -------------------------------------------------------------------------------- /demo/arg-set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/arg-set.cpp -------------------------------------------------------------------------------- /demo/arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/arg.cpp -------------------------------------------------------------------------------- /demo/async/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/async/Makefile.am -------------------------------------------------------------------------------- /demo/async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/async/README.md -------------------------------------------------------------------------------- /demo/async/log.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/async/log.properties -------------------------------------------------------------------------------- /demo/async/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/async/server.cpp -------------------------------------------------------------------------------- /demo/commandoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/commandoutput.cpp -------------------------------------------------------------------------------- /demo/cxxlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/cxxlog.cpp -------------------------------------------------------------------------------- /demo/deserialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/deserialization.cpp -------------------------------------------------------------------------------- /demo/dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/dir.cpp -------------------------------------------------------------------------------- /demo/dlloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/dlloader.cpp -------------------------------------------------------------------------------- /demo/dynamiccall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/dynamiccall.cpp -------------------------------------------------------------------------------- /demo/dynamicrpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/dynamicrpc.cpp -------------------------------------------------------------------------------- /demo/execLs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/execLs.cpp -------------------------------------------------------------------------------- /demo/future.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/future.cpp -------------------------------------------------------------------------------- /demo/getini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/getini.cpp -------------------------------------------------------------------------------- /demo/hd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/hd.cpp -------------------------------------------------------------------------------- /demo/httpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/httpclient.cpp -------------------------------------------------------------------------------- /demo/httprequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/httprequest.cpp -------------------------------------------------------------------------------- /demo/httpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/httpserver.cpp -------------------------------------------------------------------------------- /demo/iconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/iconv.cpp -------------------------------------------------------------------------------- /demo/insrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/insrv.cpp -------------------------------------------------------------------------------- /demo/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/json.cpp -------------------------------------------------------------------------------- /demo/jsonbeautify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/jsonbeautify.cpp -------------------------------------------------------------------------------- /demo/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/log.cpp -------------------------------------------------------------------------------- /demo/logsh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/logsh.cpp -------------------------------------------------------------------------------- /demo/md5sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/md5sum.cpp -------------------------------------------------------------------------------- /demo/mime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/mime.cpp -------------------------------------------------------------------------------- /demo/mime2json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/mime2json.cpp -------------------------------------------------------------------------------- /demo/mimeextract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/mimeextract.cpp -------------------------------------------------------------------------------- /demo/mimemultipart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/mimemultipart.cpp -------------------------------------------------------------------------------- /demo/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/msg.h -------------------------------------------------------------------------------- /demo/msgclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/msgclient.cpp -------------------------------------------------------------------------------- /demo/msgserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/msgserver.cpp -------------------------------------------------------------------------------- /demo/multifstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/multifstream.cpp -------------------------------------------------------------------------------- /demo/netcat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/netcat.cpp -------------------------------------------------------------------------------- /demo/netio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/netio.cpp -------------------------------------------------------------------------------- /demo/netmsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/netmsg.cpp -------------------------------------------------------------------------------- /demo/pipestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/pipestream.cpp -------------------------------------------------------------------------------- /demo/pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/pool.cpp -------------------------------------------------------------------------------- /demo/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/regex.cpp -------------------------------------------------------------------------------- /demo/rpcaddclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/rpcaddclient.cpp -------------------------------------------------------------------------------- /demo/rpcasyncaddclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/rpcasyncaddclient.cpp -------------------------------------------------------------------------------- /demo/rpcechoclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/rpcechoclient.cpp -------------------------------------------------------------------------------- /demo/rpcgenericclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/rpcgenericclient.cpp -------------------------------------------------------------------------------- /demo/rpcparallelecho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/rpcparallelecho.cpp -------------------------------------------------------------------------------- /demo/rpcproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/rpcproxy.cpp -------------------------------------------------------------------------------- /demo/rpcserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/rpcserver.cpp -------------------------------------------------------------------------------- /demo/saml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/saml2.cpp -------------------------------------------------------------------------------- /demo/serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/serialization.cpp -------------------------------------------------------------------------------- /demo/signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/signals.cpp -------------------------------------------------------------------------------- /demo/splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/splitter.cpp -------------------------------------------------------------------------------- /demo/ssl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/Makefile.am -------------------------------------------------------------------------------- /demo/ssl/rpcJecho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/rpcJecho.cpp -------------------------------------------------------------------------------- /demo/ssl/rpcJserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/rpcJserver.cpp -------------------------------------------------------------------------------- /demo/ssl/rpcbecho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/rpcbecho.cpp -------------------------------------------------------------------------------- /demo/ssl/rpcbserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/rpcbserver.cpp -------------------------------------------------------------------------------- /demo/ssl/rpcjecho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/rpcjecho.cpp -------------------------------------------------------------------------------- /demo/ssl/rpcjserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/rpcjserver.cpp -------------------------------------------------------------------------------- /demo/ssl/rpcxecho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/rpcxecho.cpp -------------------------------------------------------------------------------- /demo/ssl/rpcxserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/ssl/rpcxserver.cpp -------------------------------------------------------------------------------- /demo/sslshowcert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/sslshowcert.cpp -------------------------------------------------------------------------------- /demo/tcpsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/tcpsocket.cpp -------------------------------------------------------------------------------- /demo/timer-lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/timer-lambda.cpp -------------------------------------------------------------------------------- /demo/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/timer.cpp -------------------------------------------------------------------------------- /demo/uuencode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/uuencode.cpp -------------------------------------------------------------------------------- /demo/xmlmsgclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/xmlmsgclient.cpp -------------------------------------------------------------------------------- /demo/xmlmsgserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/xmlmsgserver.cpp -------------------------------------------------------------------------------- /demo/xmlreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/demo/xmlreader.cpp -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/argument-parsing-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/argument-parsing-howto.markdown -------------------------------------------------------------------------------- /doc/asyncronousIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/asyncronousIO.md -------------------------------------------------------------------------------- /doc/binaryrpc-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/binaryrpc-howto.markdown -------------------------------------------------------------------------------- /doc/binserialization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/binserialization.txt -------------------------------------------------------------------------------- /doc/connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/connection.md -------------------------------------------------------------------------------- /doc/csv-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/csv-howto.markdown -------------------------------------------------------------------------------- /doc/json-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/json-howto.markdown -------------------------------------------------------------------------------- /doc/jsonquick-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/jsonquick-howto.markdown -------------------------------------------------------------------------------- /doc/jsonrpc-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/jsonrpc-howto.markdown -------------------------------------------------------------------------------- /doc/logging-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/logging-howto.markdown -------------------------------------------------------------------------------- /doc/propertiesquick-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/propertiesquick-howto.markdown -------------------------------------------------------------------------------- /doc/rpc-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/rpc-howto.markdown -------------------------------------------------------------------------------- /doc/serialization-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/serialization-howto.markdown -------------------------------------------------------------------------------- /doc/timezone-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/timezone-howto.markdown -------------------------------------------------------------------------------- /doc/xmlrpc-howto.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/doc/xmlrpc-howto.markdown -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/cxxtools/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/application.h -------------------------------------------------------------------------------- /include/cxxtools/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/arg.h -------------------------------------------------------------------------------- /include/cxxtools/argin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/argin.h -------------------------------------------------------------------------------- /include/cxxtools/argout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/argout.h -------------------------------------------------------------------------------- /include/cxxtools/base64codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/base64codec.h -------------------------------------------------------------------------------- /include/cxxtools/base64stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/base64stream.h -------------------------------------------------------------------------------- /include/cxxtools/bin/bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/bin/bin.h -------------------------------------------------------------------------------- /include/cxxtools/bin/deserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/bin/deserializer.h -------------------------------------------------------------------------------- /include/cxxtools/bin/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/bin/formatter.h -------------------------------------------------------------------------------- /include/cxxtools/bin/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/bin/parser.h -------------------------------------------------------------------------------- /include/cxxtools/bin/rpcclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/bin/rpcclient.h -------------------------------------------------------------------------------- /include/cxxtools/bin/rpcserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/bin/rpcserver.h -------------------------------------------------------------------------------- /include/cxxtools/bin/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/bin/serializer.h -------------------------------------------------------------------------------- /include/cxxtools/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/byteorder.h -------------------------------------------------------------------------------- /include/cxxtools/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/cache.h -------------------------------------------------------------------------------- /include/cxxtools/callable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/callable.h -------------------------------------------------------------------------------- /include/cxxtools/callable.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/callable.tpp -------------------------------------------------------------------------------- /include/cxxtools/cgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/cgi.h -------------------------------------------------------------------------------- /include/cxxtools/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/char.h -------------------------------------------------------------------------------- /include/cxxtools/charmapcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/charmapcodec.h -------------------------------------------------------------------------------- /include/cxxtools/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/clock.h -------------------------------------------------------------------------------- /include/cxxtools/composer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/composer.h -------------------------------------------------------------------------------- /include/cxxtools/connectable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/connectable.h -------------------------------------------------------------------------------- /include/cxxtools/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/connection.h -------------------------------------------------------------------------------- /include/cxxtools/constmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/constmethod.h -------------------------------------------------------------------------------- /include/cxxtools/constmethod.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/constmethod.tpp -------------------------------------------------------------------------------- /include/cxxtools/conversionerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/conversionerror.h -------------------------------------------------------------------------------- /include/cxxtools/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/convert.h -------------------------------------------------------------------------------- /include/cxxtools/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/csv.h -------------------------------------------------------------------------------- /include/cxxtools/csvdeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/csvdeserializer.h -------------------------------------------------------------------------------- /include/cxxtools/csvparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/csvparser.h -------------------------------------------------------------------------------- /include/cxxtools/csvserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/csvserializer.h -------------------------------------------------------------------------------- /include/cxxtools/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/date.h -------------------------------------------------------------------------------- /include/cxxtools/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/datetime.h -------------------------------------------------------------------------------- /include/cxxtools/decomposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/decomposer.h -------------------------------------------------------------------------------- /include/cxxtools/delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/delegate.h -------------------------------------------------------------------------------- /include/cxxtools/delegate.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/delegate.tpp -------------------------------------------------------------------------------- /include/cxxtools/deserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/deserializer.h -------------------------------------------------------------------------------- /include/cxxtools/destructionsentry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/destructionsentry.h -------------------------------------------------------------------------------- /include/cxxtools/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/directory.h -------------------------------------------------------------------------------- /include/cxxtools/dlloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/dlloader.h -------------------------------------------------------------------------------- /include/cxxtools/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/doxygen.cfg -------------------------------------------------------------------------------- /include/cxxtools/envsubst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/envsubst.h -------------------------------------------------------------------------------- /include/cxxtools/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/event.h -------------------------------------------------------------------------------- /include/cxxtools/eventloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/eventloop.h -------------------------------------------------------------------------------- /include/cxxtools/eventsink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/eventsink.h -------------------------------------------------------------------------------- /include/cxxtools/eventsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/eventsource.h -------------------------------------------------------------------------------- /include/cxxtools/facets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/facets.h -------------------------------------------------------------------------------- /include/cxxtools/fdstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/fdstream.h -------------------------------------------------------------------------------- /include/cxxtools/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/file.h -------------------------------------------------------------------------------- /include/cxxtools/filedevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/filedevice.h -------------------------------------------------------------------------------- /include/cxxtools/fileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/fileinfo.h -------------------------------------------------------------------------------- /include/cxxtools/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/formatter.h -------------------------------------------------------------------------------- /include/cxxtools/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/function.h -------------------------------------------------------------------------------- /include/cxxtools/function.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/function.tpp -------------------------------------------------------------------------------- /include/cxxtools/hdstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/hdstream.h -------------------------------------------------------------------------------- /include/cxxtools/hexdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/hexdump.h -------------------------------------------------------------------------------- /include/cxxtools/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/hmac.h -------------------------------------------------------------------------------- /include/cxxtools/http/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/client.h -------------------------------------------------------------------------------- /include/cxxtools/http/messageheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/messageheader.h -------------------------------------------------------------------------------- /include/cxxtools/http/reply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/reply.h -------------------------------------------------------------------------------- /include/cxxtools/http/replyheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/replyheader.h -------------------------------------------------------------------------------- /include/cxxtools/http/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/request.h -------------------------------------------------------------------------------- /include/cxxtools/http/requestheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/requestheader.h -------------------------------------------------------------------------------- /include/cxxtools/http/responder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/responder.h -------------------------------------------------------------------------------- /include/cxxtools/http/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/server.h -------------------------------------------------------------------------------- /include/cxxtools/http/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/http/service.h -------------------------------------------------------------------------------- /include/cxxtools/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/ini.h -------------------------------------------------------------------------------- /include/cxxtools/inideserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/inideserializer.h -------------------------------------------------------------------------------- /include/cxxtools/inifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/inifile.h -------------------------------------------------------------------------------- /include/cxxtools/iniparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iniparser.h -------------------------------------------------------------------------------- /include/cxxtools/iniserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iniserializer.h -------------------------------------------------------------------------------- /include/cxxtools/invokable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/invokable.h -------------------------------------------------------------------------------- /include/cxxtools/invokable.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/invokable.tpp -------------------------------------------------------------------------------- /include/cxxtools/iodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iodevice.h -------------------------------------------------------------------------------- /include/cxxtools/ioerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/ioerror.h -------------------------------------------------------------------------------- /include/cxxtools/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iostream.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_10codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_10codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_11codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_11codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_13codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_13codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_14codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_14codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_15codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_15codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_16codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_16codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_1codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_1codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_2codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_2codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_3codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_3codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_4codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_4codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_5codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_5codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_6codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_6codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_7codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_7codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_8codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_8codec.h -------------------------------------------------------------------------------- /include/cxxtools/iso8859_9codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/iso8859_9codec.h -------------------------------------------------------------------------------- /include/cxxtools/join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/join.h -------------------------------------------------------------------------------- /include/cxxtools/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/json.h -------------------------------------------------------------------------------- /include/cxxtools/json/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/json/httpclient.h -------------------------------------------------------------------------------- /include/cxxtools/json/httpservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/json/httpservice.h -------------------------------------------------------------------------------- /include/cxxtools/json/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/json/request.h -------------------------------------------------------------------------------- /include/cxxtools/json/responder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/json/responder.h -------------------------------------------------------------------------------- /include/cxxtools/json/rpcclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/json/rpcclient.h -------------------------------------------------------------------------------- /include/cxxtools/json/rpcserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/json/rpcserver.h -------------------------------------------------------------------------------- /include/cxxtools/jsondeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/jsondeserializer.h -------------------------------------------------------------------------------- /include/cxxtools/jsonformatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/jsonformatter.h -------------------------------------------------------------------------------- /include/cxxtools/jsonparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/jsonparser.h -------------------------------------------------------------------------------- /include/cxxtools/jsonserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/jsonserializer.h -------------------------------------------------------------------------------- /include/cxxtools/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/library.h -------------------------------------------------------------------------------- /include/cxxtools/limitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/limitstream.h -------------------------------------------------------------------------------- /include/cxxtools/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/log.h -------------------------------------------------------------------------------- /include/cxxtools/log/cxxtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/log/cxxtools.h -------------------------------------------------------------------------------- /include/cxxtools/loginit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/loginit.h -------------------------------------------------------------------------------- /include/cxxtools/lrucache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/lrucache.h -------------------------------------------------------------------------------- /include/cxxtools/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/main.h -------------------------------------------------------------------------------- /include/cxxtools/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/md5.h -------------------------------------------------------------------------------- /include/cxxtools/md5stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/md5stream.h -------------------------------------------------------------------------------- /include/cxxtools/method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/method.h -------------------------------------------------------------------------------- /include/cxxtools/method.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/method.tpp -------------------------------------------------------------------------------- /include/cxxtools/mime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/mime.h -------------------------------------------------------------------------------- /include/cxxtools/multifstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/multifstream.h -------------------------------------------------------------------------------- /include/cxxtools/net/addrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/addrinfo.h -------------------------------------------------------------------------------- /include/cxxtools/net/bufferedsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/bufferedsocket.h -------------------------------------------------------------------------------- /include/cxxtools/net/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/net.h -------------------------------------------------------------------------------- /include/cxxtools/net/tcpserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/tcpserver.h -------------------------------------------------------------------------------- /include/cxxtools/net/tcpsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/tcpsocket.h -------------------------------------------------------------------------------- /include/cxxtools/net/tcpstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/tcpstream.h -------------------------------------------------------------------------------- /include/cxxtools/net/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/udp.h -------------------------------------------------------------------------------- /include/cxxtools/net/udpstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/udpstream.h -------------------------------------------------------------------------------- /include/cxxtools/net/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/net/uri.h -------------------------------------------------------------------------------- /include/cxxtools/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/pipe.h -------------------------------------------------------------------------------- /include/cxxtools/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/pool.h -------------------------------------------------------------------------------- /include/cxxtools/posix/commandinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/posix/commandinput.h -------------------------------------------------------------------------------- /include/cxxtools/posix/commandoutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/posix/commandoutput.h -------------------------------------------------------------------------------- /include/cxxtools/posix/daemonize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/posix/daemonize.h -------------------------------------------------------------------------------- /include/cxxtools/posix/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/posix/exec.h -------------------------------------------------------------------------------- /include/cxxtools/posix/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/posix/fork.h -------------------------------------------------------------------------------- /include/cxxtools/posix/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/posix/pipe.h -------------------------------------------------------------------------------- /include/cxxtools/posix/pipestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/posix/pipestream.h -------------------------------------------------------------------------------- /include/cxxtools/properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/properties.h -------------------------------------------------------------------------------- /include/cxxtools/propertiesdeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/propertiesdeserializer.h -------------------------------------------------------------------------------- /include/cxxtools/propertiesfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/propertiesfile.h -------------------------------------------------------------------------------- /include/cxxtools/propertiesparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/propertiesparser.h -------------------------------------------------------------------------------- /include/cxxtools/propertiesserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/propertiesserializer.h -------------------------------------------------------------------------------- /include/cxxtools/ptrstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/ptrstream.h -------------------------------------------------------------------------------- /include/cxxtools/ptrstreambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/ptrstreambuf.h -------------------------------------------------------------------------------- /include/cxxtools/query_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/query_params.h -------------------------------------------------------------------------------- /include/cxxtools/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/queue.h -------------------------------------------------------------------------------- /include/cxxtools/quotedprintablecodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/quotedprintablecodec.h -------------------------------------------------------------------------------- /include/cxxtools/quotedprintablestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/quotedprintablestream.h -------------------------------------------------------------------------------- /include/cxxtools/refcounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/refcounted.h -------------------------------------------------------------------------------- /include/cxxtools/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/regex.h -------------------------------------------------------------------------------- /include/cxxtools/remoteclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/remoteclient.h -------------------------------------------------------------------------------- /include/cxxtools/remoteexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/remoteexception.h -------------------------------------------------------------------------------- /include/cxxtools/remoteprocedure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/remoteprocedure.h -------------------------------------------------------------------------------- /include/cxxtools/remoteprocedure.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/remoteprocedure.tpp -------------------------------------------------------------------------------- /include/cxxtools/remoteprocedureva.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/remoteprocedureva.h -------------------------------------------------------------------------------- /include/cxxtools/remoteresult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/remoteresult.h -------------------------------------------------------------------------------- /include/cxxtools/resetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/resetter.h -------------------------------------------------------------------------------- /include/cxxtools/scopedincrement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/scopedincrement.h -------------------------------------------------------------------------------- /include/cxxtools/selectable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/selectable.h -------------------------------------------------------------------------------- /include/cxxtools/selector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/selector.h -------------------------------------------------------------------------------- /include/cxxtools/serializationerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/serializationerror.h -------------------------------------------------------------------------------- /include/cxxtools/serializationinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/serializationinfo.h -------------------------------------------------------------------------------- /include/cxxtools/serviceprocedure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/serviceprocedure.h -------------------------------------------------------------------------------- /include/cxxtools/serviceprocedure.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/serviceprocedure.tpp -------------------------------------------------------------------------------- /include/cxxtools/serviceregistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/serviceregistry.h -------------------------------------------------------------------------------- /include/cxxtools/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/settings.h -------------------------------------------------------------------------------- /include/cxxtools/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/signal.h -------------------------------------------------------------------------------- /include/cxxtools/signal.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/signal.tpp -------------------------------------------------------------------------------- /include/cxxtools/slot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/slot.h -------------------------------------------------------------------------------- /include/cxxtools/slot.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/slot.tpp -------------------------------------------------------------------------------- /include/cxxtools/sourceinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/sourceinfo.h -------------------------------------------------------------------------------- /include/cxxtools/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/split.h -------------------------------------------------------------------------------- /include/cxxtools/sslcertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/sslcertificate.h -------------------------------------------------------------------------------- /include/cxxtools/sslctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/sslctx.h -------------------------------------------------------------------------------- /include/cxxtools/stddevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/stddevice.h -------------------------------------------------------------------------------- /include/cxxtools/stdstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/stdstream.h -------------------------------------------------------------------------------- /include/cxxtools/streambuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/streambuffer.h -------------------------------------------------------------------------------- /include/cxxtools/streamcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/streamcounter.h -------------------------------------------------------------------------------- /include/cxxtools/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/string.h -------------------------------------------------------------------------------- /include/cxxtools/string.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/string.tpp -------------------------------------------------------------------------------- /include/cxxtools/stringstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/stringstream.h -------------------------------------------------------------------------------- /include/cxxtools/systemerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/systemerror.h -------------------------------------------------------------------------------- /include/cxxtools/tee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/tee.h -------------------------------------------------------------------------------- /include/cxxtools/textbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/textbuffer.h -------------------------------------------------------------------------------- /include/cxxtools/textcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/textcodec.h -------------------------------------------------------------------------------- /include/cxxtools/textstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/textstream.h -------------------------------------------------------------------------------- /include/cxxtools/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/time.h -------------------------------------------------------------------------------- /include/cxxtools/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/timer.h -------------------------------------------------------------------------------- /include/cxxtools/timespan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/timespan.h -------------------------------------------------------------------------------- /include/cxxtools/trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/trim.h -------------------------------------------------------------------------------- /include/cxxtools/typetraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/typetraits.h -------------------------------------------------------------------------------- /include/cxxtools/tz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/tz.h -------------------------------------------------------------------------------- /include/cxxtools/unit/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/application.h -------------------------------------------------------------------------------- /include/cxxtools/unit/assertion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/assertion.h -------------------------------------------------------------------------------- /include/cxxtools/unit/jsonreporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/jsonreporter.h -------------------------------------------------------------------------------- /include/cxxtools/unit/registertest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/registertest.h -------------------------------------------------------------------------------- /include/cxxtools/unit/reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/reporter.h -------------------------------------------------------------------------------- /include/cxxtools/unit/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/test.h -------------------------------------------------------------------------------- /include/cxxtools/unit/testcase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/testcase.h -------------------------------------------------------------------------------- /include/cxxtools/unit/testcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/testcontext.h -------------------------------------------------------------------------------- /include/cxxtools/unit/testfixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/testfixture.h -------------------------------------------------------------------------------- /include/cxxtools/unit/testmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/testmain.h -------------------------------------------------------------------------------- /include/cxxtools/unit/testmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/testmethod.h -------------------------------------------------------------------------------- /include/cxxtools/unit/testprotocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/testprotocol.h -------------------------------------------------------------------------------- /include/cxxtools/unit/testsuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/unit/testsuite.h -------------------------------------------------------------------------------- /include/cxxtools/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/utf8.h -------------------------------------------------------------------------------- /include/cxxtools/utf8codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/utf8codec.h -------------------------------------------------------------------------------- /include/cxxtools/uuencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/uuencode.h -------------------------------------------------------------------------------- /include/cxxtools/void.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/void.h -------------------------------------------------------------------------------- /include/cxxtools/win1252codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/win1252codec.h -------------------------------------------------------------------------------- /include/cxxtools/xml/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/attribute.h -------------------------------------------------------------------------------- /include/cxxtools/xml/characters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/characters.h -------------------------------------------------------------------------------- /include/cxxtools/xml/comment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/comment.h -------------------------------------------------------------------------------- /include/cxxtools/xml/doctypedeclaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/doctypedeclaration.h -------------------------------------------------------------------------------- /include/cxxtools/xml/enddocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/enddocument.h -------------------------------------------------------------------------------- /include/cxxtools/xml/endelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/endelement.h -------------------------------------------------------------------------------- /include/cxxtools/xml/entityresolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/entityresolver.h -------------------------------------------------------------------------------- /include/cxxtools/xml/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/namespace.h -------------------------------------------------------------------------------- /include/cxxtools/xml/namespacecontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/namespacecontext.h -------------------------------------------------------------------------------- /include/cxxtools/xml/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/node.h -------------------------------------------------------------------------------- /include/cxxtools/xml/processinginstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/processinginstruction.h -------------------------------------------------------------------------------- /include/cxxtools/xml/startelement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/startelement.h -------------------------------------------------------------------------------- /include/cxxtools/xml/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/xml.h -------------------------------------------------------------------------------- /include/cxxtools/xml/xmldeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/xmldeserializer.h -------------------------------------------------------------------------------- /include/cxxtools/xml/xmlerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/xmlerror.h -------------------------------------------------------------------------------- /include/cxxtools/xml/xmlformatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/xmlformatter.h -------------------------------------------------------------------------------- /include/cxxtools/xml/xmlreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/xmlreader.h -------------------------------------------------------------------------------- /include/cxxtools/xml/xmlserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/xmlserializer.h -------------------------------------------------------------------------------- /include/cxxtools/xml/xmlwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xml/xmlwriter.h -------------------------------------------------------------------------------- /include/cxxtools/xmlrpc/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xmlrpc/client.h -------------------------------------------------------------------------------- /include/cxxtools/xmlrpc/errorcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xmlrpc/errorcodes.h -------------------------------------------------------------------------------- /include/cxxtools/xmlrpc/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xmlrpc/formatter.h -------------------------------------------------------------------------------- /include/cxxtools/xmlrpc/httpclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xmlrpc/httpclient.h -------------------------------------------------------------------------------- /include/cxxtools/xmlrpc/responder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xmlrpc/responder.h -------------------------------------------------------------------------------- /include/cxxtools/xmlrpc/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xmlrpc/scanner.h -------------------------------------------------------------------------------- /include/cxxtools/xmlrpc/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/include/cxxtools/xmlrpc/service.h -------------------------------------------------------------------------------- /lgpl++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/lgpl++.txt -------------------------------------------------------------------------------- /m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/ax_compiler_vendor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/m4/ax_compiler_vendor.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/m4/ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /pkgconfig/cxxtools-bin.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/pkgconfig/cxxtools-bin.pc.in -------------------------------------------------------------------------------- /pkgconfig/cxxtools-http.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/pkgconfig/cxxtools-http.pc.in -------------------------------------------------------------------------------- /pkgconfig/cxxtools-json.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/pkgconfig/cxxtools-json.pc.in -------------------------------------------------------------------------------- /pkgconfig/cxxtools-unit.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/pkgconfig/cxxtools-unit.pc.in -------------------------------------------------------------------------------- /pkgconfig/cxxtools-xmlrpc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/pkgconfig/cxxtools-xmlrpc.pc.in -------------------------------------------------------------------------------- /pkgconfig/cxxtools.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/pkgconfig/cxxtools.pc.in -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/Makefile.mingw -------------------------------------------------------------------------------- /src/Makefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/Makefile.win32 -------------------------------------------------------------------------------- /src/addrinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/addrinfo.cpp -------------------------------------------------------------------------------- /src/addrinfoimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/addrinfoimpl.cpp -------------------------------------------------------------------------------- /src/addrinfoimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/addrinfoimpl.h -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/applicationimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/applicationimpl.cpp -------------------------------------------------------------------------------- /src/applicationimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/applicationimpl.h -------------------------------------------------------------------------------- /src/base64codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/base64codec.cpp -------------------------------------------------------------------------------- /src/bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/CMakeLists.txt -------------------------------------------------------------------------------- /src/bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/Makefile.am -------------------------------------------------------------------------------- /src/bin/deserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/deserializer.cpp -------------------------------------------------------------------------------- /src/bin/formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/formatter.cpp -------------------------------------------------------------------------------- /src/bin/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/parser.cpp -------------------------------------------------------------------------------- /src/bin/responder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/responder.cpp -------------------------------------------------------------------------------- /src/bin/responder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/responder.h -------------------------------------------------------------------------------- /src/bin/rpcclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/rpcclient.cpp -------------------------------------------------------------------------------- /src/bin/rpcclientimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/rpcclientimpl.cpp -------------------------------------------------------------------------------- /src/bin/rpcclientimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/rpcclientimpl.h -------------------------------------------------------------------------------- /src/bin/rpcserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/rpcserver.cpp -------------------------------------------------------------------------------- /src/bin/rpcserverimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/rpcserverimpl.cpp -------------------------------------------------------------------------------- /src/bin/rpcserverimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/rpcserverimpl.h -------------------------------------------------------------------------------- /src/bin/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/scanner.cpp -------------------------------------------------------------------------------- /src/bin/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/scanner.h -------------------------------------------------------------------------------- /src/bin/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/serializer.cpp -------------------------------------------------------------------------------- /src/bin/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/socket.cpp -------------------------------------------------------------------------------- /src/bin/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/socket.h -------------------------------------------------------------------------------- /src/bin/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/worker.cpp -------------------------------------------------------------------------------- /src/bin/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bin/worker.h -------------------------------------------------------------------------------- /src/bufferedsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/bufferedsocket.cpp -------------------------------------------------------------------------------- /src/cgi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/cgi.cpp -------------------------------------------------------------------------------- /src/char.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/char.cpp -------------------------------------------------------------------------------- /src/charmapcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/charmapcodec.cpp -------------------------------------------------------------------------------- /src/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/clock.cpp -------------------------------------------------------------------------------- /src/clockimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/clockimpl.cpp -------------------------------------------------------------------------------- /src/clockimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/clockimpl.h -------------------------------------------------------------------------------- /src/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/config.cmake.in -------------------------------------------------------------------------------- /src/connectable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/connectable.cpp -------------------------------------------------------------------------------- /src/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/connection.cpp -------------------------------------------------------------------------------- /src/conversionerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/conversionerror.cpp -------------------------------------------------------------------------------- /src/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/convert.cpp -------------------------------------------------------------------------------- /src/csvdeserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/csvdeserializer.cpp -------------------------------------------------------------------------------- /src/csvparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/csvparser.cpp -------------------------------------------------------------------------------- /src/csvserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/csvserializer.cpp -------------------------------------------------------------------------------- /src/date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/date.cpp -------------------------------------------------------------------------------- /src/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/datetime.cpp -------------------------------------------------------------------------------- /src/dateutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/dateutils.cpp -------------------------------------------------------------------------------- /src/dateutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/dateutils.h -------------------------------------------------------------------------------- /src/decomposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/decomposer.cpp -------------------------------------------------------------------------------- /src/deserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/deserializer.cpp -------------------------------------------------------------------------------- /src/directory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/directory.cpp -------------------------------------------------------------------------------- /src/directoryimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/directoryimpl.cpp -------------------------------------------------------------------------------- /src/directoryimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/directoryimpl.h -------------------------------------------------------------------------------- /src/envsubst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/envsubst.cpp -------------------------------------------------------------------------------- /src/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/error.cpp -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/error.h -------------------------------------------------------------------------------- /src/eventloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/eventloop.cpp -------------------------------------------------------------------------------- /src/eventsink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/eventsink.cpp -------------------------------------------------------------------------------- /src/eventsource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/eventsource.cpp -------------------------------------------------------------------------------- /src/facets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/facets.cpp -------------------------------------------------------------------------------- /src/fdstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/fdstream.cpp -------------------------------------------------------------------------------- /src/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/file.cpp -------------------------------------------------------------------------------- /src/filedevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/filedevice.cpp -------------------------------------------------------------------------------- /src/filedeviceimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/filedeviceimpl.cpp -------------------------------------------------------------------------------- /src/filedeviceimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/filedeviceimpl.h -------------------------------------------------------------------------------- /src/fileimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/fileimpl.cpp -------------------------------------------------------------------------------- /src/fileimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/fileimpl.h -------------------------------------------------------------------------------- /src/fileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/fileinfo.cpp -------------------------------------------------------------------------------- /src/formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/formatter.cpp -------------------------------------------------------------------------------- /src/hdstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/hdstream.cpp -------------------------------------------------------------------------------- /src/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/CMakeLists.txt -------------------------------------------------------------------------------- /src/http/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/Makefile.am -------------------------------------------------------------------------------- /src/http/chunkedreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/chunkedreader.cpp -------------------------------------------------------------------------------- /src/http/chunkedreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/chunkedreader.h -------------------------------------------------------------------------------- /src/http/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/client.cpp -------------------------------------------------------------------------------- /src/http/clientimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/clientimpl.cpp -------------------------------------------------------------------------------- /src/http/clientimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/clientimpl.h -------------------------------------------------------------------------------- /src/http/mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/mapper.cpp -------------------------------------------------------------------------------- /src/http/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/mapper.h -------------------------------------------------------------------------------- /src/http/messageheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/messageheader.cpp -------------------------------------------------------------------------------- /src/http/notauthenticatedresponder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/notauthenticatedresponder.cpp -------------------------------------------------------------------------------- /src/http/notauthenticatedresponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/notauthenticatedresponder.h -------------------------------------------------------------------------------- /src/http/notauthenticatedservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/notauthenticatedservice.cpp -------------------------------------------------------------------------------- /src/http/notauthenticatedservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/notauthenticatedservice.h -------------------------------------------------------------------------------- /src/http/notfoundresponder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/notfoundresponder.cpp -------------------------------------------------------------------------------- /src/http/notfoundresponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/notfoundresponder.h -------------------------------------------------------------------------------- /src/http/notfoundservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/notfoundservice.cpp -------------------------------------------------------------------------------- /src/http/notfoundservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/notfoundservice.h -------------------------------------------------------------------------------- /src/http/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/parser.cpp -------------------------------------------------------------------------------- /src/http/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/parser.h -------------------------------------------------------------------------------- /src/http/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/request.cpp -------------------------------------------------------------------------------- /src/http/responder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/responder.cpp -------------------------------------------------------------------------------- /src/http/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/server.cpp -------------------------------------------------------------------------------- /src/http/serverimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/serverimpl.cpp -------------------------------------------------------------------------------- /src/http/serverimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/serverimpl.h -------------------------------------------------------------------------------- /src/http/serverimplbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/serverimplbase.h -------------------------------------------------------------------------------- /src/http/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/service.cpp -------------------------------------------------------------------------------- /src/http/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/socket.cpp -------------------------------------------------------------------------------- /src/http/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/socket.h -------------------------------------------------------------------------------- /src/http/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/worker.cpp -------------------------------------------------------------------------------- /src/http/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/http/worker.h -------------------------------------------------------------------------------- /src/inideserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/inideserializer.cpp -------------------------------------------------------------------------------- /src/inifile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/inifile.cpp -------------------------------------------------------------------------------- /src/iniparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/iniparser.cpp -------------------------------------------------------------------------------- /src/iniserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/iniserializer.cpp -------------------------------------------------------------------------------- /src/iodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/iodevice.cpp -------------------------------------------------------------------------------- /src/iodeviceimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/iodeviceimpl.cpp -------------------------------------------------------------------------------- /src/iodeviceimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/iodeviceimpl.h -------------------------------------------------------------------------------- /src/ioerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/ioerror.cpp -------------------------------------------------------------------------------- /src/iostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/iostream.cpp -------------------------------------------------------------------------------- /src/iso8859_codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/iso8859_codec.cpp -------------------------------------------------------------------------------- /src/json/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/CMakeLists.txt -------------------------------------------------------------------------------- /src/json/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/Makefile.am -------------------------------------------------------------------------------- /src/json/httpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/httpclient.cpp -------------------------------------------------------------------------------- /src/json/httpclientimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/httpclientimpl.cpp -------------------------------------------------------------------------------- /src/json/httpclientimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/httpclientimpl.h -------------------------------------------------------------------------------- /src/json/httpresponder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/httpresponder.cpp -------------------------------------------------------------------------------- /src/json/httpresponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/httpresponder.h -------------------------------------------------------------------------------- /src/json/httpservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/httpservice.cpp -------------------------------------------------------------------------------- /src/json/responder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/responder.cpp -------------------------------------------------------------------------------- /src/json/responder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/responder.h -------------------------------------------------------------------------------- /src/json/rpcclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/rpcclient.cpp -------------------------------------------------------------------------------- /src/json/rpcclientimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/rpcclientimpl.cpp -------------------------------------------------------------------------------- /src/json/rpcclientimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/rpcclientimpl.h -------------------------------------------------------------------------------- /src/json/rpcserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/rpcserver.cpp -------------------------------------------------------------------------------- /src/json/rpcserverimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/rpcserverimpl.cpp -------------------------------------------------------------------------------- /src/json/rpcserverimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/rpcserverimpl.h -------------------------------------------------------------------------------- /src/json/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/scanner.cpp -------------------------------------------------------------------------------- /src/json/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/scanner.h -------------------------------------------------------------------------------- /src/json/socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/socket.cpp -------------------------------------------------------------------------------- /src/json/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/socket.h -------------------------------------------------------------------------------- /src/json/worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/worker.cpp -------------------------------------------------------------------------------- /src/json/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/json/worker.h -------------------------------------------------------------------------------- /src/jsondeserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/jsondeserializer.cpp -------------------------------------------------------------------------------- /src/jsonformatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/jsonformatter.cpp -------------------------------------------------------------------------------- /src/jsonparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/jsonparser.cpp -------------------------------------------------------------------------------- /src/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/library.cpp -------------------------------------------------------------------------------- /src/libraryimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/libraryimpl.cpp -------------------------------------------------------------------------------- /src/libraryimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/libraryimpl.h -------------------------------------------------------------------------------- /src/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/log.cpp -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/md5stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/md5stream.cpp -------------------------------------------------------------------------------- /src/mime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/mime.cpp -------------------------------------------------------------------------------- /src/multifstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/multifstream.cpp -------------------------------------------------------------------------------- /src/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/net.cpp -------------------------------------------------------------------------------- /src/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/pipe.cpp -------------------------------------------------------------------------------- /src/pipeimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/pipeimpl.cpp -------------------------------------------------------------------------------- /src/pipeimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/pipeimpl.h -------------------------------------------------------------------------------- /src/posix/commandinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/posix/commandinput.cpp -------------------------------------------------------------------------------- /src/posix/commandoutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/posix/commandoutput.cpp -------------------------------------------------------------------------------- /src/posix/daemonize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/posix/daemonize.cpp -------------------------------------------------------------------------------- /src/posix/fork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/posix/fork.cpp -------------------------------------------------------------------------------- /src/posix/pipestream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/posix/pipestream.cpp -------------------------------------------------------------------------------- /src/posix/posixpipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/posix/posixpipe.cpp -------------------------------------------------------------------------------- /src/propertiesdeserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/propertiesdeserializer.cpp -------------------------------------------------------------------------------- /src/propertiesfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/propertiesfile.cpp -------------------------------------------------------------------------------- /src/propertiesparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/propertiesparser.cpp -------------------------------------------------------------------------------- /src/propertiesserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/propertiesserializer.cpp -------------------------------------------------------------------------------- /src/query_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/query_params.cpp -------------------------------------------------------------------------------- /src/quotedprintablecodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/quotedprintablecodec.cpp -------------------------------------------------------------------------------- /src/regex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/regex.cpp -------------------------------------------------------------------------------- /src/remoteclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/remoteclient.cpp -------------------------------------------------------------------------------- /src/selectable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/selectable.cpp -------------------------------------------------------------------------------- /src/selectableimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/selectableimpl.h -------------------------------------------------------------------------------- /src/selector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/selector.cpp -------------------------------------------------------------------------------- /src/selectorimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/selectorimpl.cpp -------------------------------------------------------------------------------- /src/selectorimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/selectorimpl.h -------------------------------------------------------------------------------- /src/serializationerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/serializationerror.cpp -------------------------------------------------------------------------------- /src/serializationinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/serializationinfo.cpp -------------------------------------------------------------------------------- /src/serviceregistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/serviceregistry.cpp -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settingsreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/settingsreader.cpp -------------------------------------------------------------------------------- /src/settingsreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/settingsreader.h -------------------------------------------------------------------------------- /src/settingswriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/settingswriter.cpp -------------------------------------------------------------------------------- /src/settingswriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/settingswriter.h -------------------------------------------------------------------------------- /src/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/signal.cpp -------------------------------------------------------------------------------- /src/sslcertificate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/sslcertificate.cpp -------------------------------------------------------------------------------- /src/sslcertificateimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/sslcertificateimpl.cpp -------------------------------------------------------------------------------- /src/sslcertificateimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/sslcertificateimpl.h -------------------------------------------------------------------------------- /src/sslctx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/sslctx.cpp -------------------------------------------------------------------------------- /src/sslctximpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/sslctximpl.cpp -------------------------------------------------------------------------------- /src/sslctximpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/sslctximpl.h -------------------------------------------------------------------------------- /src/stddevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/stddevice.cpp -------------------------------------------------------------------------------- /src/streambuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/streambuffer.cpp -------------------------------------------------------------------------------- /src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/string.cpp -------------------------------------------------------------------------------- /src/stringstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/stringstream.cpp -------------------------------------------------------------------------------- /src/systemerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/systemerror.cpp -------------------------------------------------------------------------------- /src/tcpserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tcpserver.cpp -------------------------------------------------------------------------------- /src/tcpserverimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tcpserverimpl.cpp -------------------------------------------------------------------------------- /src/tcpserverimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tcpserverimpl.h -------------------------------------------------------------------------------- /src/tcpsocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tcpsocket.cpp -------------------------------------------------------------------------------- /src/tcpsocketimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tcpsocketimpl.cpp -------------------------------------------------------------------------------- /src/tcpsocketimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tcpsocketimpl.h -------------------------------------------------------------------------------- /src/tcpstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tcpstream.cpp -------------------------------------------------------------------------------- /src/tee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tee.cpp -------------------------------------------------------------------------------- /src/textbuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/textbuffer.cpp -------------------------------------------------------------------------------- /src/textcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/textcodec.cpp -------------------------------------------------------------------------------- /src/textstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/textstream.cpp -------------------------------------------------------------------------------- /src/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/time.cpp -------------------------------------------------------------------------------- /src/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/timer.cpp -------------------------------------------------------------------------------- /src/timespan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/timespan.cpp -------------------------------------------------------------------------------- /src/tz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/tz.cpp -------------------------------------------------------------------------------- /src/udp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/udp.cpp -------------------------------------------------------------------------------- /src/udpstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/udpstream.cpp -------------------------------------------------------------------------------- /src/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unicode.h -------------------------------------------------------------------------------- /src/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/CMakeLists.txt -------------------------------------------------------------------------------- /src/unit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/Makefile.am -------------------------------------------------------------------------------- /src/unit/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/application.cpp -------------------------------------------------------------------------------- /src/unit/assertion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/assertion.cpp -------------------------------------------------------------------------------- /src/unit/jsonreporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/jsonreporter.cpp -------------------------------------------------------------------------------- /src/unit/reporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/reporter.cpp -------------------------------------------------------------------------------- /src/unit/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/test.cpp -------------------------------------------------------------------------------- /src/unit/testcase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/testcase.cpp -------------------------------------------------------------------------------- /src/unit/testcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/testcontext.cpp -------------------------------------------------------------------------------- /src/unit/testprotocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/testprotocol.cpp -------------------------------------------------------------------------------- /src/unit/testsuite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/unit/testsuite.cpp -------------------------------------------------------------------------------- /src/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/uri.cpp -------------------------------------------------------------------------------- /src/utf8codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/utf8codec.cpp -------------------------------------------------------------------------------- /src/uuencode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/uuencode.cpp -------------------------------------------------------------------------------- /src/win1252codec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/win1252codec.cpp -------------------------------------------------------------------------------- /src/xml/characters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/characters.cpp -------------------------------------------------------------------------------- /src/xml/endelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/endelement.cpp -------------------------------------------------------------------------------- /src/xml/entityresolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/entityresolver.cpp -------------------------------------------------------------------------------- /src/xml/namespacecontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/namespacecontext.cpp -------------------------------------------------------------------------------- /src/xml/startelement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/startelement.cpp -------------------------------------------------------------------------------- /src/xml/xmldeserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/xmldeserializer.cpp -------------------------------------------------------------------------------- /src/xml/xmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/xmlerror.cpp -------------------------------------------------------------------------------- /src/xml/xmlformatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/xmlformatter.cpp -------------------------------------------------------------------------------- /src/xml/xmlreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/xmlreader.cpp -------------------------------------------------------------------------------- /src/xml/xmlserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/xmlserializer.cpp -------------------------------------------------------------------------------- /src/xml/xmlwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xml/xmlwriter.cpp -------------------------------------------------------------------------------- /src/xmlrpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/CMakeLists.txt -------------------------------------------------------------------------------- /src/xmlrpc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/Makefile.am -------------------------------------------------------------------------------- /src/xmlrpc/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/client.cpp -------------------------------------------------------------------------------- /src/xmlrpc/clientimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/clientimpl.cpp -------------------------------------------------------------------------------- /src/xmlrpc/clientimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/clientimpl.h -------------------------------------------------------------------------------- /src/xmlrpc/formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/formatter.cpp -------------------------------------------------------------------------------- /src/xmlrpc/httpclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/httpclient.cpp -------------------------------------------------------------------------------- /src/xmlrpc/httpclientimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/httpclientimpl.cpp -------------------------------------------------------------------------------- /src/xmlrpc/httpclientimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/httpclientimpl.h -------------------------------------------------------------------------------- /src/xmlrpc/responder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/responder.cpp -------------------------------------------------------------------------------- /src/xmlrpc/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/scanner.cpp -------------------------------------------------------------------------------- /src/xmlrpc/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/src/xmlrpc/service.cpp -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/MyApp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/MyApp.pm -------------------------------------------------------------------------------- /test/arg-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/arg-test.cpp -------------------------------------------------------------------------------- /test/base64-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/base64-test.cpp -------------------------------------------------------------------------------- /test/binrpc-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/binrpc-test.cpp -------------------------------------------------------------------------------- /test/binserializer-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/binserializer-test.cpp -------------------------------------------------------------------------------- /test/cache-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/cache-test.cpp -------------------------------------------------------------------------------- /test/cgitest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/cgitest.cpp -------------------------------------------------------------------------------- /test/char-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/char-test.cpp -------------------------------------------------------------------------------- /test/clock-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/clock-test.cpp -------------------------------------------------------------------------------- /test/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/color.h -------------------------------------------------------------------------------- /test/commandoutput-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/commandoutput-test.cpp -------------------------------------------------------------------------------- /test/convert-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/convert-test.cpp -------------------------------------------------------------------------------- /test/csvdeserializer-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/csvdeserializer-test.cpp -------------------------------------------------------------------------------- /test/csvserializer-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/csvserializer-test.cpp -------------------------------------------------------------------------------- /test/date-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/date-test.cpp -------------------------------------------------------------------------------- /test/datetime-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/datetime-test.cpp -------------------------------------------------------------------------------- /test/directory-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/directory-test.cpp -------------------------------------------------------------------------------- /test/envsubst-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/envsubst-test.cpp -------------------------------------------------------------------------------- /test/eventloop-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/eventloop-test.cpp -------------------------------------------------------------------------------- /test/file-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/file-test.cpp -------------------------------------------------------------------------------- /test/fileinfo-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/fileinfo-test.cpp -------------------------------------------------------------------------------- /test/inifile-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/inifile-test.cpp -------------------------------------------------------------------------------- /test/iniparser-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/iniparser-test.cpp -------------------------------------------------------------------------------- /test/iniserialization-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/iniserialization-test.cpp -------------------------------------------------------------------------------- /test/iso8859_1-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/iso8859_1-test.cpp -------------------------------------------------------------------------------- /test/iso8859_15-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/iso8859_15-test.cpp -------------------------------------------------------------------------------- /test/join-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/join-test.cpp -------------------------------------------------------------------------------- /test/json-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/json-test.cpp -------------------------------------------------------------------------------- /test/jsondeserializer-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/jsondeserializer-test.cpp -------------------------------------------------------------------------------- /test/jsonechoclient.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/jsonechoclient.pl -------------------------------------------------------------------------------- /test/jsonechoserver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/jsonechoserver.pl -------------------------------------------------------------------------------- /test/jsonrpc-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/jsonrpc-test.cpp -------------------------------------------------------------------------------- /test/jsonrpchttp-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/jsonrpchttp-test.cpp -------------------------------------------------------------------------------- /test/jsonserializer-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/jsonserializer-test.cpp -------------------------------------------------------------------------------- /test/limitstream-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/limitstream-test.cpp -------------------------------------------------------------------------------- /test/logbench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/logbench.cpp -------------------------------------------------------------------------------- /test/logconfiguration-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/logconfiguration-test.cpp -------------------------------------------------------------------------------- /test/lrucache-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/lrucache-test.cpp -------------------------------------------------------------------------------- /test/md5-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/md5-test.cpp -------------------------------------------------------------------------------- /test/mime-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/mime-test.cpp -------------------------------------------------------------------------------- /test/pool-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/pool-test.cpp -------------------------------------------------------------------------------- /test/properties-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/properties-test.cpp -------------------------------------------------------------------------------- /test/propertiesserializer-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/propertiesserializer-test.cpp -------------------------------------------------------------------------------- /test/ptrstream-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/ptrstream-test.cpp -------------------------------------------------------------------------------- /test/query_params-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/query_params-test.cpp -------------------------------------------------------------------------------- /test/query_params_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/query_params_test.cpp -------------------------------------------------------------------------------- /test/quotedprintable-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/quotedprintable-test.cpp -------------------------------------------------------------------------------- /test/regex-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/regex-test.cpp -------------------------------------------------------------------------------- /test/rpcbenchasyncclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/rpcbenchasyncclient.cpp -------------------------------------------------------------------------------- /test/rpcbenchclient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/rpcbenchclient.cpp -------------------------------------------------------------------------------- /test/rpcbenchserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/rpcbenchserver.cpp -------------------------------------------------------------------------------- /test/scopedincrement-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/scopedincrement-test.cpp -------------------------------------------------------------------------------- /test/serialization-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/serialization-test.cpp -------------------------------------------------------------------------------- /test/serializationinfo-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/serializationinfo-test.cpp -------------------------------------------------------------------------------- /test/serializer-bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/serializer-bench.cpp -------------------------------------------------------------------------------- /test/sipath-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/sipath-test.cpp -------------------------------------------------------------------------------- /test/split-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/split-test.cpp -------------------------------------------------------------------------------- /test/string-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/string-test.cpp -------------------------------------------------------------------------------- /test/tcpsockettest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/tcpsockettest.cpp -------------------------------------------------------------------------------- /test/test-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/test-main.cpp -------------------------------------------------------------------------------- /test/time-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/time-test.cpp -------------------------------------------------------------------------------- /test/timespan-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/timespan-test.cpp -------------------------------------------------------------------------------- /test/trim-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/trim-test.cpp -------------------------------------------------------------------------------- /test/tz-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/tz-test.cpp -------------------------------------------------------------------------------- /test/uri-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/uri-test.cpp -------------------------------------------------------------------------------- /test/utf8-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/utf8-test.cpp -------------------------------------------------------------------------------- /test/win1252-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/win1252-test.cpp -------------------------------------------------------------------------------- /test/xmldeserializer-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/xmldeserializer-test.cpp -------------------------------------------------------------------------------- /test/xmlreader-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/xmlreader-test.cpp -------------------------------------------------------------------------------- /test/xmlrpc-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/xmlrpc-test.cpp -------------------------------------------------------------------------------- /test/xmlrpccallback-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/xmlrpccallback-test.cpp -------------------------------------------------------------------------------- /test/xmlserializer-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/test/xmlserializer-test.cpp -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/cxxtz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/tools/cxxtz.cpp -------------------------------------------------------------------------------- /tools/siconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/tools/siconvert.cpp -------------------------------------------------------------------------------- /utils/function-tpp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/utils/function-tpp.pl -------------------------------------------------------------------------------- /utils/git2changelog.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/utils/git2changelog.pl -------------------------------------------------------------------------------- /utils/remoteprocedure.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/utils/remoteprocedure.pl -------------------------------------------------------------------------------- /utils/rpcservice.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/utils/rpcservice.pl -------------------------------------------------------------------------------- /utils/serviceprocedure.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/utils/serviceprocedure.pl -------------------------------------------------------------------------------- /utils/serviceregistry.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/utils/serviceregistry.pl -------------------------------------------------------------------------------- /utils/setLicense.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/utils/setLicense.pl -------------------------------------------------------------------------------- /utils/signal-tpp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maekitalo/cxxtools/HEAD/utils/signal-tpp.pl --------------------------------------------------------------------------------