X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fdevtools.c;h=5991d70cbbe5a1fb7af0c0998b17e18a2ab82bc1;hb=1442d234fb6681e32b10348a6c7b226c11629203;hp=6d78119c49846a3c177ce575742adda961c67b45;hpb=556532a450e55746e0f5c1c580d109b2744566da;p=meshlink diff --git a/src/devtools.c b/src/devtools.c index 6d78119c..5991d70c 100644 --- a/src/devtools.c +++ b/src/devtools.c @@ -30,6 +30,18 @@ #include "devtools.h" +static void trybind_nop_probe(void) { + return; +} + +static void keyrotate_nop_probe(int stage) { + (void)stage; + return; +} + +void (*devtool_trybind_probe)(void) = trybind_nop_probe; +void (*devtool_keyrotate_probe)(int stage) = keyrotate_nop_probe; + /* Return an array of edges in the current network graph. * Data captures the current state and will not be updated. * Caller must deallocate data when done.