aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/impl/codegen/fc_unary.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/grpc++/impl/codegen/fc_unary.h')
-rw-r--r--include/grpc++/impl/codegen/fc_unary.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/grpc++/impl/codegen/fc_unary.h b/include/grpc++/impl/codegen/fc_unary.h
index 22e40ab02e..768443912b 100644
--- a/include/grpc++/impl/codegen/fc_unary.h
+++ b/include/grpc++/impl/codegen/fc_unary.h
@@ -56,7 +56,10 @@ template <class RequestType, class ResponseType>
public:
FCUnary(Call* call, ServerContext* ctx): call_(call), ctx_(ctx), read_done_(false), write_done_(false) {}
~FCUnary() {}
- uint32_t NextMessageSize() {return call_->max_message_size();}
+ bool NextMessageSize(uint32_t *sz) {
+ *sz = call_->max_message_size();
+ return true;
+ }
bool Read(RequestType *request) {
if (read_done_) {
return false;