You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use dap::net::Server::create() create a tcp server. just like:
auto server = dap::net::Server::create();
and
auto session = dap::Session::create()
. How to bind the server and session together.
can use just like:
void OnConnect()
{
// create a debug session when a client connection was accpeted
auto session = dap::Session::create();