The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Tanvi Jagtap 3c928436b4 [Gpr_To_Absl_Logging] Remove logging header from example and test/cpp folder (#37488) 4 months ago
..
BUILD [Gpr_To_Absl_Logging] Move function to test header form log.h (#36860) 6 months ago
README.md
backend_metrics_lb_policy.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log (#36678) 7 months ago
backend_metrics_lb_policy.h
backend_metrics_lb_policy_test.cc
client.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log (#36678) 7 months ago
client_helper.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log (#36678) 7 months ago
client_helper.h
grpclb_fallback_test.cc [reorg] move src/core/lib/gpr -> src/core/util (#36543) 7 months ago
http2_client.cc
http2_client.h
interop_client.cc [Gpr_To_Absl_Logging] [Gpr_To_Absl_Logging] Minor log formatting fixes 5 months ago
interop_client.h
interop_server.cc
interop_server_bootstrap.cc
interop_test.cc
interop_test_with_metadata_log.sh
istio_echo_server.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log (#36678) 7 months ago
istio_echo_server_lib.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log (#36678) 7 months ago
istio_echo_server_lib.h
istio_echo_server_test.cc
metrics_client.cc [Gpr_To_Absl_Logging] Remove logging header from example and test/cpp folder (#37488) 4 months ago
observability_client.cc
observability_interop_server_bootstrap.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log (#36678) 7 months ago
pre_stop_hook_server.cc
pre_stop_hook_server.h
pre_stop_hook_server_test.cc [test] Increase timeout in pre_stop_hook_server_test (#37126) 5 months ago
reconnect_interop_client.cc
reconnect_interop_server.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log (#36678) 7 months ago
rpc_behavior_lb_policy.cc [LB policy API] change metadata mutations to overwrite instead of append (#37075) 6 months ago
rpc_behavior_lb_policy.h
server_helper.cc
server_helper.h
stress_interop_client.cc [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging - gpr_log (#36678) 7 months ago
stress_interop_client.h
stress_test.cc [Clean-up] Tidy fix (#37104) 5 months ago
xds_federation_client.cc
xds_interop_client.cc
xds_interop_server.cc [CSM] Stop using xDS enabled server for CSM observability tests (#36725) 7 months ago
xds_interop_server_lib.cc [CSM] Stop using xDS enabled server for CSM observability tests (#36725) 7 months ago
xds_interop_server_lib.h [CSM] Stop using xDS enabled server for CSM observability tests (#36725) 7 months ago
xds_interop_server_test.cc [CSM] Stop using xDS enabled server for CSM observability tests (#36725) 7 months ago
xds_stats_watcher.cc
xds_stats_watcher.h
xds_stats_watcher_test.cc

README.md

Running a test locally during development

To start a server during development:

  1. Choose an available port number.
  2. Start the server:
GRPC_VERBOSITY=DEBUG ibazel run --compilation_mode=dbg //test/cpp/interop:interop_server -- --port={port_number}
  1. Start the client:
GRPC_VERBOSITY=DEBUG ibazel run --test_output=streamed //test/cpp/interop:interop_client -- --server_port={port_number} --test_case={test_case}