From 390a8c93fab5a3f8555c5303056a6e598bd151c0 Mon Sep 17 00:00:00 2001 From: Volker Birk Date: Thu, 11 Aug 2016 14:10:59 +0200 Subject: [PATCH] add inject() for debugging --- src/pEpmodule.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pEpmodule.cc b/src/pEpmodule.cc index 3208f42..04fdc3a 100644 --- a/src/pEpmodule.cc +++ b/src/pEpmodule.cc @@ -201,7 +201,7 @@ BOOST_PYTHON_MODULE(pEp) .def("messageToSend", &SyncMixIn::messageToSend, "overwrite this method") .def("showHandshake", &SyncMixIn::showHandshake, "overwrite this method") #ifndef NDEBUG - .def("_inject", &SyncMixIn::_inject, + .def("inject", &SyncMixIn::_inject, "inject an event into the sync state machine (for debugging purposes only") #endif .def("deliverHandshakeResult", &SyncMixIn::deliverHandshakeResult,