├── .github └── workflows │ ├── ci-linux.yaml │ └── ci-windows.yaml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── autobahn ├── autobahn.hpp ├── boost_config.hpp ├── exceptions.hpp ├── wamp_arguments.hpp ├── wamp_auth_utils.hpp ├── wamp_authenticate.hpp ├── wamp_authenticate.ipp ├── wamp_call.hpp ├── wamp_call.ipp ├── wamp_call_options.hpp ├── wamp_call_options.ipp ├── wamp_call_result.hpp ├── wamp_call_result.ipp ├── wamp_challenge.hpp ├── wamp_challenge.ipp ├── wamp_event.hpp ├── wamp_event.ipp ├── wamp_event_handler.hpp ├── wamp_invocation.hpp ├── wamp_invocation.ipp ├── wamp_message.hpp ├── wamp_message.ipp ├── wamp_message_type.hpp ├── wamp_message_type.ipp ├── wamp_procedure.hpp ├── wamp_publication.hpp ├── wamp_publication.ipp ├── wamp_publish_options.hpp ├── wamp_publish_options.ipp ├── wamp_rawsocket_transport.hpp ├── wamp_rawsocket_transport.ipp ├── wamp_register_request.hpp ├── wamp_register_request.ipp ├── wamp_registration.hpp ├── wamp_registration.ipp ├── wamp_session.hpp ├── wamp_session.ipp ├── wamp_subscribe_options.hpp ├── wamp_subscribe_options.ipp ├── wamp_subscribe_request.hpp ├── wamp_subscribe_request.ipp ├── wamp_subscription.hpp ├── wamp_subscription.ipp ├── wamp_tcp_transport.hpp ├── wamp_tcp_transport.ipp ├── wamp_transport.hpp ├── wamp_transport_handler.hpp ├── wamp_uds_transport.hpp ├── wamp_unregister_request.hpp ├── wamp_unregister_request.ipp ├── wamp_unsubscribe_request.hpp ├── wamp_unsubscribe_request.ipp ├── wamp_websocket_transport.hpp ├── wamp_websocket_transport.ipp ├── wamp_websocketpp_websocket_transport.hpp └── wamp_websocketpp_websocket_transport.ipp ├── cmake ├── Includes │ └── CMakeLists.txt └── Modules │ ├── FindBotan2.cmake │ ├── FindMsgpack.cmake │ └── FindWebsocketpp.cmake ├── conanfile.py ├── docker ├── Dockerfile.clang ├── Dockerfile.gcc ├── removeall.sh └── versions.sh └── examples ├── CMakeLists.txt ├── callee.cpp ├── callee_new.cpp ├── caller.cpp ├── cryptosign-botan.cpp ├── cryptosign-openssl.cpp ├── parameters.cpp ├── parameters.hpp ├── projects └── VS2015 │ ├── autobahn-cpp-examples.vs2015.sln │ ├── autobahn-cpp.vcxproj │ ├── callee.vcxproj │ ├── caller.vcxproj │ ├── provide_prefix.vcxproj │ ├── publisher.vcxproj │ ├── subscriber.vcxproj │ ├── wampcra.vcxproj │ └── websocket.vcxproj ├── provide_prefix.cpp ├── publisher.cpp ├── subscriber.cpp ├── uds.cpp ├── wampcra.cpp └── websocket_callee.cpp /.github/workflows/ci-linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/.github/workflows/ci-linux.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/.github/workflows/ci-windows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/README.md -------------------------------------------------------------------------------- /autobahn/autobahn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/autobahn.hpp -------------------------------------------------------------------------------- /autobahn/boost_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/boost_config.hpp -------------------------------------------------------------------------------- /autobahn/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/exceptions.hpp -------------------------------------------------------------------------------- /autobahn/wamp_arguments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_arguments.hpp -------------------------------------------------------------------------------- /autobahn/wamp_auth_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_auth_utils.hpp -------------------------------------------------------------------------------- /autobahn/wamp_authenticate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_authenticate.hpp -------------------------------------------------------------------------------- /autobahn/wamp_authenticate.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_authenticate.ipp -------------------------------------------------------------------------------- /autobahn/wamp_call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_call.hpp -------------------------------------------------------------------------------- /autobahn/wamp_call.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_call.ipp -------------------------------------------------------------------------------- /autobahn/wamp_call_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_call_options.hpp -------------------------------------------------------------------------------- /autobahn/wamp_call_options.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_call_options.ipp -------------------------------------------------------------------------------- /autobahn/wamp_call_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_call_result.hpp -------------------------------------------------------------------------------- /autobahn/wamp_call_result.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_call_result.ipp -------------------------------------------------------------------------------- /autobahn/wamp_challenge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_challenge.hpp -------------------------------------------------------------------------------- /autobahn/wamp_challenge.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_challenge.ipp -------------------------------------------------------------------------------- /autobahn/wamp_event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_event.hpp -------------------------------------------------------------------------------- /autobahn/wamp_event.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_event.ipp -------------------------------------------------------------------------------- /autobahn/wamp_event_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_event_handler.hpp -------------------------------------------------------------------------------- /autobahn/wamp_invocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_invocation.hpp -------------------------------------------------------------------------------- /autobahn/wamp_invocation.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_invocation.ipp -------------------------------------------------------------------------------- /autobahn/wamp_message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_message.hpp -------------------------------------------------------------------------------- /autobahn/wamp_message.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_message.ipp -------------------------------------------------------------------------------- /autobahn/wamp_message_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_message_type.hpp -------------------------------------------------------------------------------- /autobahn/wamp_message_type.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_message_type.ipp -------------------------------------------------------------------------------- /autobahn/wamp_procedure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_procedure.hpp -------------------------------------------------------------------------------- /autobahn/wamp_publication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_publication.hpp -------------------------------------------------------------------------------- /autobahn/wamp_publication.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_publication.ipp -------------------------------------------------------------------------------- /autobahn/wamp_publish_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_publish_options.hpp -------------------------------------------------------------------------------- /autobahn/wamp_publish_options.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_publish_options.ipp -------------------------------------------------------------------------------- /autobahn/wamp_rawsocket_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_rawsocket_transport.hpp -------------------------------------------------------------------------------- /autobahn/wamp_rawsocket_transport.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_rawsocket_transport.ipp -------------------------------------------------------------------------------- /autobahn/wamp_register_request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_register_request.hpp -------------------------------------------------------------------------------- /autobahn/wamp_register_request.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_register_request.ipp -------------------------------------------------------------------------------- /autobahn/wamp_registration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_registration.hpp -------------------------------------------------------------------------------- /autobahn/wamp_registration.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_registration.ipp -------------------------------------------------------------------------------- /autobahn/wamp_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_session.hpp -------------------------------------------------------------------------------- /autobahn/wamp_session.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_session.ipp -------------------------------------------------------------------------------- /autobahn/wamp_subscribe_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_subscribe_options.hpp -------------------------------------------------------------------------------- /autobahn/wamp_subscribe_options.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_subscribe_options.ipp -------------------------------------------------------------------------------- /autobahn/wamp_subscribe_request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_subscribe_request.hpp -------------------------------------------------------------------------------- /autobahn/wamp_subscribe_request.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_subscribe_request.ipp -------------------------------------------------------------------------------- /autobahn/wamp_subscription.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_subscription.hpp -------------------------------------------------------------------------------- /autobahn/wamp_subscription.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_subscription.ipp -------------------------------------------------------------------------------- /autobahn/wamp_tcp_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_tcp_transport.hpp -------------------------------------------------------------------------------- /autobahn/wamp_tcp_transport.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_tcp_transport.ipp -------------------------------------------------------------------------------- /autobahn/wamp_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_transport.hpp -------------------------------------------------------------------------------- /autobahn/wamp_transport_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_transport_handler.hpp -------------------------------------------------------------------------------- /autobahn/wamp_uds_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_uds_transport.hpp -------------------------------------------------------------------------------- /autobahn/wamp_unregister_request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_unregister_request.hpp -------------------------------------------------------------------------------- /autobahn/wamp_unregister_request.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_unregister_request.ipp -------------------------------------------------------------------------------- /autobahn/wamp_unsubscribe_request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_unsubscribe_request.hpp -------------------------------------------------------------------------------- /autobahn/wamp_unsubscribe_request.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_unsubscribe_request.ipp -------------------------------------------------------------------------------- /autobahn/wamp_websocket_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_websocket_transport.hpp -------------------------------------------------------------------------------- /autobahn/wamp_websocket_transport.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_websocket_transport.ipp -------------------------------------------------------------------------------- /autobahn/wamp_websocketpp_websocket_transport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_websocketpp_websocket_transport.hpp -------------------------------------------------------------------------------- /autobahn/wamp_websocketpp_websocket_transport.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/autobahn/wamp_websocketpp_websocket_transport.ipp -------------------------------------------------------------------------------- /cmake/Includes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/cmake/Includes/CMakeLists.txt -------------------------------------------------------------------------------- /cmake/Modules/FindBotan2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/cmake/Modules/FindBotan2.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindMsgpack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/cmake/Modules/FindMsgpack.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindWebsocketpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/cmake/Modules/FindWebsocketpp.cmake -------------------------------------------------------------------------------- /conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/conanfile.py -------------------------------------------------------------------------------- /docker/Dockerfile.clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/docker/Dockerfile.clang -------------------------------------------------------------------------------- /docker/Dockerfile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/docker/Dockerfile.gcc -------------------------------------------------------------------------------- /docker/removeall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/docker/removeall.sh -------------------------------------------------------------------------------- /docker/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/docker/versions.sh -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/callee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/callee.cpp -------------------------------------------------------------------------------- /examples/callee_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/callee_new.cpp -------------------------------------------------------------------------------- /examples/caller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/caller.cpp -------------------------------------------------------------------------------- /examples/cryptosign-botan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/cryptosign-botan.cpp -------------------------------------------------------------------------------- /examples/cryptosign-openssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/cryptosign-openssl.cpp -------------------------------------------------------------------------------- /examples/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/parameters.cpp -------------------------------------------------------------------------------- /examples/parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/parameters.hpp -------------------------------------------------------------------------------- /examples/projects/VS2015/autobahn-cpp-examples.vs2015.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/autobahn-cpp-examples.vs2015.sln -------------------------------------------------------------------------------- /examples/projects/VS2015/autobahn-cpp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/autobahn-cpp.vcxproj -------------------------------------------------------------------------------- /examples/projects/VS2015/callee.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/callee.vcxproj -------------------------------------------------------------------------------- /examples/projects/VS2015/caller.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/caller.vcxproj -------------------------------------------------------------------------------- /examples/projects/VS2015/provide_prefix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/provide_prefix.vcxproj -------------------------------------------------------------------------------- /examples/projects/VS2015/publisher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/publisher.vcxproj -------------------------------------------------------------------------------- /examples/projects/VS2015/subscriber.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/subscriber.vcxproj -------------------------------------------------------------------------------- /examples/projects/VS2015/wampcra.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/wampcra.vcxproj -------------------------------------------------------------------------------- /examples/projects/VS2015/websocket.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/projects/VS2015/websocket.vcxproj -------------------------------------------------------------------------------- /examples/provide_prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/provide_prefix.cpp -------------------------------------------------------------------------------- /examples/publisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/publisher.cpp -------------------------------------------------------------------------------- /examples/subscriber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/subscriber.cpp -------------------------------------------------------------------------------- /examples/uds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/uds.cpp -------------------------------------------------------------------------------- /examples/wampcra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/wampcra.cpp -------------------------------------------------------------------------------- /examples/websocket_callee.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crossbario/autobahn-cpp/HEAD/examples/websocket_callee.cpp --------------------------------------------------------------------------------