File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
java/io/grpc/testing/integration Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1118,7 +1118,7 @@ public void testMcs(TestServiceGrpc.TestServiceStub asyncStub) throws Exception
11181118 asyncStub .fullDuplexCall (responseObserver1 );
11191119 StreamingOutputCallRequest request = StreamingOutputCallRequest .newBuilder ()
11201120 .addResponseParameters (ResponseParameters .newBuilder ()
1121- .setFillClientSocketAddress (
1121+ .setFillPeerSocketAddress (
11221122 Messages .BoolValue .newBuilder ().setValue (true ).build ())
11231123 .build ())
11241124 .build ();
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ private boolean whetherSendClientSocketAddressInResponse(StreamingOutputCallRequ
256256 Iterator <ResponseParameters > responseParametersIterator =
257257 request .getResponseParametersList ().iterator ();
258258 while (responseParametersIterator .hasNext ()) {
259- if (responseParametersIterator .next ().getFillClientSocketAddress ().getValue ()) {
259+ if (responseParametersIterator .next ().getFillPeerSocketAddress ().getValue ()) {
260260 return true ;
261261 }
262262 }
Original file line number Diff line number Diff line change @@ -160,9 +160,9 @@ message ResponseParameters {
160160 // the response's compression status.
161161 BoolValue compressed = 3 ;
162162
163- // Whether to request the server to send the requesting client 's socket
163+ // Whether to request the server to send the requesting peer 's socket
164164 // address in the response.
165- BoolValue fill_client_socket_address = 4 ;
165+ BoolValue fill_peer_socket_address = 4 ;
166166}
167167
168168// Server-streaming request.
You can’t perform that action at this time.
0 commit comments