Craig Tiller
29fa1c2fa4
Compile fix
10 years ago
Craig Tiller
33a0b83af3
clang compile fixes
10 years ago
Craig Tiller
4ffdcd56ce
Add an optional server shutdown event.
...
Allows servers to expedite shutdown once all in-progress calls are
completed. We may want to eventually remove grpc_server_shutdown in
preference to this.
10 years ago
Craig Tiller
4853791a84
Build fix
10 years ago
Craig Tiller
7b01878736
Fix returned status
...
The client should return status deadline exceeded when the deadline is
exceeded (not cancelled status)
10 years ago
Craig Tiller
7132d51b2e
Include some useful help text
10 years ago
Julien Boeuf
b222b4d978
Changing size type in Transport Security (TSI) from uint32_t to size_t:
...
Will remove grpc impedance mismatch.
10 years ago
Craig Tiller
297fafa078
Opportunistically use perftools if installed.
...
Allows us to collect profiles of the open source build using gprof.
10 years ago
Craig Tiller
3eef2c4bcb
clang-format
10 years ago
Craig Tiller
32946d37e0
() --> (void)
10 years ago
Craig Tiller
d7f2c2b1c7
clang-format
10 years ago
Craig Tiller
a2075b90d7
Remove calls to grpc_call_accept from C core tests.
...
This call is deprecated.
10 years ago
Craig Tiller
408c7383cc
clang-format
10 years ago
Craig Tiller
ca75796811
Fling test uses grpc_call_invoke
10 years ago
Craig Tiller
240d02c076
Echo test uses grpc_call_invoke
10 years ago
Craig Tiller
8a7a152919
Remove unused private field
10 years ago
Craig Tiller
92eb29a7b7
Remove unused private field
10 years ago
Craig Tiller
09b637538f
clang-format
10 years ago
Craig Tiller
6046dc35ef
clang-format
10 years ago
Yang Gao
5680ff4687
Run clang-format-all.sh
10 years ago
Craig Tiller
14e60e9f8b
Use C signal handling in C++ end2end
10 years ago
Craig Tiller
e1e2475b69
Unify signal handling in C
10 years ago
Nicolas "Pixel" Noble
80d68c09c4
Fixing test_config.c
...
Now all the gpr tests build and run under win32.
10 years ago
Nicolas "Pixel" Noble
27be1a2d3c
Removing a few more traces of libevent.
10 years ago
Craig Tiller
0a00a08c53
Use C signal handling in C++ end2end
10 years ago
Craig Tiller
5c35008ea1
Unify signal handling in C
10 years ago
Craig Tiller
bf444937c6
Fix ordering problem leading to flaky test
10 years ago
Craig Tiller
fc84e7b28e
Fix tag matching bug
10 years ago
Craig Tiller
9c0307bd4f
Update test to grpc_call_invoke
10 years ago
Craig Tiller
97f7fca5ff
Remove calls to grpc_call_start_invoke
10 years ago
Craig Tiller
cbbac9b10d
Compile fix
10 years ago
Craig Tiller
40fc7a6632
clang-format codebase
10 years ago
Craig Tiller
80fa15c151
Moving prototype from Google to GitHub
...
I'd started some prototyping work on this change before the move to
GitHub; this change restores things.
10 years ago
Craig Tiller
21b19a552c
Fix formatting
10 years ago
Craig Tiller
bf2659f0b6
Fix qps test.
...
This was failing to compile.
10 years ago
vpai
92fe70e983
Added new results to report resource usage and QPS, along with new proto support for this
...
and also to turn the client into a server that can be controlled remotely (client part
not implemented yet)
Change on 2015/01/13 by vpai <vpai@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83863541
10 years ago
Craig Tiller
b5dcec5a2e
clang-format codebase
10 years ago
nnoble
5f2ecb355d
Splitting grpc_test_util into gpr_test_util.
...
Change on 2015/01/12 by nnoble <nnoble@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83801564
10 years ago
ctiller
570d1f4425
Return bound port number from grpc_server_add_http2_port.
...
Allows tests to bind to port 0 and still have clients connect to them.
Change on 2015/01/12 by ctiller <ctiller@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83800669
10 years ago
Craig Tiller
de990f9155
Initialize gtest correctly
10 years ago
Craig Tiller
b2a42f3271
Make this file compile
10 years ago
Craig Tiller
9608f0f212
Make this file compile
10 years ago
Craig Tiller
35e3971e89
Make this file compile
10 years ago
Craig Tiller
edd10d2596
Make this file usable from C++
10 years ago
hongyu
99e317a8f8
grpc census hash_table test coverage improvements.
...
Change on 2015/01/12 by hongyu <hongyu@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83786701
10 years ago
yangg
0617057a39
Make interop server buildable on opensource build.
...
Change on 2015/01/12 by yangg <yangg@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83783816
10 years ago
ctiller
00297df63b
Ensure flow control callbacks happen outside the transport lock.
...
Split encoding into two phases: a collection phase to decide on what is allowed
(by flow control) to be sent, and a framing phase when the data is actually
sent. Perform the second phase outside of the transport mutex (but serially,
guarded by t->writing) and make flow control callbacks during that phase.
This will allow us to make further transport level calls in response to flow
control callbacks, and will be needed by the forthcoming async api for C++.
Change on 2015/01/12 by ctiller <ctiller@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83774409
10 years ago
yangg
1b151096d1
Add impl subdirectory under public and move headers that need to be installed
...
to it.
Change on 2015/01/09 by yangg <yangg@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83640373
10 years ago
ctiller
0cd69562fd
Allow logging mechanism to be overridden by applications.
...
This necessitated the removal of gpr_vlog to keep a clean interface.
Change on 2015/01/09 by ctiller <ctiller@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83634996
10 years ago
yangg
4105e2b86c
Add ServiceAccount Credentials wrapping and handle credentials creation
...
failure.
Change on 2015/01/09 by yangg <yangg@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=83634736
10 years ago