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
This commit is contained in:
David Reiss 2010-10-18 17:25:40 +00:00
parent f770befe17
commit 63228e53c2

View File

@ -153,6 +153,7 @@ uint32_t TDebugProtocol::writeMessageBegin(const std::string& name,
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 + "(");