| 95 | } |
| 96 | |
| 97 | void GrpcVerbsService::GetRemoteAddressHandler( |
| 98 | WorkerCall<GetRemoteAddressRequest, GetRemoteAddressResponse>* call) { |
| 99 | Status s = GetRemoteAddressSync(&call->request, &call->response); |
| 100 | call->SendResponse(ToGrpcStatus(s)); |
| 101 | ENQUEUE_REQUEST(GetRemoteAddress, false); |
| 102 | } |
| 103 | |
| 104 | // synchronous method |
| 105 | Status GrpcVerbsService::GetRemoteAddressSync( |
nothing calls this directly
no test coverage detected