BoxFort icon indicating copy to clipboard operation
BoxFort copied to clipboard

add support for undodb debugging server

Open fserra opened this issue 9 years ago • 1 comments

It would be nice if one could use other debugging servers. Undodb is a nice debugging tool that also provides a server

Thanks!

fserra avatar Sep 26 '16 18:09 fserra

In bxfi_exec the following options are needed for undodb to work

case BXF_DBG_UNDODB:
    argv[0] = dbg_full;
    argv[argc++] = "--connect-port";
    snprintf(port, sizeof (port), "%d", sandbox->debug.tcp);
    break;

fserra avatar Sep 27 '16 05:09 fserra