diff options
author | Sree Kuchibhotla <sreecha@users.noreply.github.com> | 2017-02-02 22:27:51 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-02 22:27:51 -0800 |
commit | fbe0cf27f1711c167839987d41f078de65b4759a (patch) | |
tree | d6c0f1059ac2ab2485611471825073d79f2d0868 /test/core/util/passthru_endpoint.h | |
parent | 26623b3d77ae78e66f66b996593acf57a7cf1197 (diff) | |
parent | 6c1d43bdd2242e68b7e494cb7c6ff511c5dc76ef (diff) |
Merge pull request #9487 from ctiller/bm_stream
One-way streaming microbenchmarks
Diffstat (limited to 'test/core/util/passthru_endpoint.h')
-rw-r--r-- | test/core/util/passthru_endpoint.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/core/util/passthru_endpoint.h b/test/core/util/passthru_endpoint.h index b81ac5571c..9199925aa0 100644 --- a/test/core/util/passthru_endpoint.h +++ b/test/core/util/passthru_endpoint.h @@ -36,8 +36,11 @@ #include "src/core/lib/iomgr/endpoint.h" +typedef struct { int num_writes; } grpc_passthru_endpoint_stats; + void grpc_passthru_endpoint_create(grpc_endpoint **client, grpc_endpoint **server, - grpc_resource_quota *resource_quota); + grpc_resource_quota *resource_quota, + grpc_passthru_endpoint_stats *stats); #endif |