Repository: qpid-proton Updated Branches: refs/heads/master 213e463c0 -> 4d1116aea
made shims for C handlers skip properly Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/4d1116ae Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/4d1116ae Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/4d1116ae Branch: refs/heads/master Commit: 4d1116aeab9ba7f2e3d99fd3815c94486fbc47e8 Parents: 213e463 Author: Rafael Schloming <[email protected]> Authored: Mon Feb 2 12:12:07 2015 -0500 Committer: Rafael Schloming <[email protected]> Committed: Mon Feb 2 12:12:32 2015 -0500 ---------------------------------------------------------------------- proton-j/src/main/resources/chandlers.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/4d1116ae/proton-j/src/main/resources/chandlers.py ---------------------------------------------------------------------- diff --git a/proton-j/src/main/resources/chandlers.py b/proton-j/src/main/resources/chandlers.py index 2f13752..429d0a3 100644 --- a/proton-j/src/main/resources/chandlers.py +++ b/proton-j/src/main/resources/chandlers.py @@ -17,7 +17,14 @@ # under the License. # +from cerror import Skipped + # from proton/handlers.h -pn_flowcontroller = None -pn_handshaker = None -pn_iohandler = None +def pn_flowcontroller(window): + raise Skipped() + +def pn_handshaker(): + raise Skipped() + +def pn_iohandler(): + raise Skipped() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
