commit | 63228e53c239eac664b3933b4ed3a86d32af809a | [log] [tgz] |
---|---|---|
author | David Reiss <dreiss@apache.org> | Mon Oct 18 17:25:40 2010 +0000 |
committer | David Reiss <dreiss@apache.org> | Mon Oct 18 17:25:40 2010 +0000 |
tree | da6ac69c3fe9ac26c58c6f90c188101304db994c | |
parent | f770befe173280bf25942294814eb8f9f3e95906 [diff] |
cpp: Support oneway calls in TDebugProtocol.cpp git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@1023913 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/protocol/TDebugProtocol.cpp b/lib/cpp/src/protocol/TDebugProtocol.cpp index 93980f0..ee82e71 100644 --- a/lib/cpp/src/protocol/TDebugProtocol.cpp +++ b/lib/cpp/src/protocol/TDebugProtocol.cpp
@@ -153,6 +153,7 @@ case T_CALL : mtype = "call" ; break; case T_REPLY : mtype = "reply" ; break; case T_EXCEPTION : mtype = "exn" ; break; + case T_ONEWAY : mtype = "oneway" ; break; } uint32_t size = writeIndented("(" + mtype + ") " + name + "(");