Craig Tiller
12a270166d
Merge pull request #3011 from dgquintas/comma-separated-ips
...
sockaddr_resolver now supports comma-separated list of IPs
9 years ago
Craig Tiller
b5bf12bdcc
Merge pull request #3049 from murgatroid99/objc_disable_udp_error
...
Made udp_server.c compile for iOS
9 years ago
Craig Tiller
bf27a6860c
Merge pull request #3053 from jboeuf/cpp_string_ref
...
Adding grpc::string_ref class
9 years ago
Julien Boeuf
bf9a8f8d7c
Fixing tests.
9 years ago
Julien Boeuf
814ffd67f5
Fixing buildgen output.
9 years ago
Julien Boeuf
0382bfae38
Merge branch 'master' of github.com:grpc/grpc into cpp_string_ref
9 years ago
Julien Boeuf
8fd915ab8d
Adding grpc::string_ref class.
...
- Strict subset of
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3442.html
- Useful to avoid unnecessary string copies.
9 years ago
Masood Malekghassemi
e289e52436
Merge pull request #3038 from nathanielmanistaatgoogle/four-fixes
...
Four small Python bugfixes
9 years ago
Masood Malekghassemi
7c70bc2673
Merge pull request #3045 from nathanielmanistaatgoogle/parameter-reassignment
...
Fix parameter reassignment defect
9 years ago
Masood Malekghassemi
54598750d6
Merge pull request #3040 from nathanielmanistaatgoogle/face
...
A test suite for the RPC Framework Face interface
9 years ago
Nathaniel Manista
8caba0500b
A test suite for the RPC Framework Face interface
...
While a full Cartesian product across all variables isn't yet present
this is still reasonably comprehensive.
9 years ago
Craig Tiller
fede51f7b7
Merge pull request #3028 from yang-g/header_rearrange
...
Header rearrangement
9 years ago
murgatroid99
049e1dfd76
Made udp_server.c compile for iOS
9 years ago
yang-g
9d1f0c4a0c
Fix merge failures
9 years ago
yang-g
3db9d01729
regenerate projects
9 years ago
yang-g
3e4bd9598b
merge with head
9 years ago
David G. Quintas
045c12a5c6
Merge pull request #3008 from yang-g/docs
...
Remove ChannelInterface and replace it with Channel
9 years ago
Masood Malekghassemi
8c4549aec7
Merge pull request #3039 from nathanielmanistaatgoogle/transport-objects
...
Add a "transport" field to links.Ticket
9 years ago
Nathaniel Manista
c9dc74b2cd
Fix parameter reassignment defect
...
This defect was introduced in 515b0a9352
.
9 years ago
Craig Tiller
d7af736794
Merge pull request #3010 from dgquintas/head_vs_tails
...
Assert http2 header ordering
9 years ago
yang-g
b1f2407833
merge with head and resolve conflicts
9 years ago
Craig Tiller
99d376147e
Merge pull request #3015 from grpc/docsdocsdocs
...
Expanded grpc_server_request_call's docstring
9 years ago
Craig Tiller
1359a126a7
Added some clarification
9 years ago
jboeuf
0e67ac2c6c
Merge pull request #3034 from yang-g/sec_conn_leak
...
Move the default roots check before allocation
9 years ago
Craig Tiller
e29e18ccf0
Merge pull request #3037 from vjpai/fray
...
Eliminate public thread-pool interface
9 years ago
Vijay Pai
0660eaca00
Merge branch 'master' into fray
9 years ago
Yang Gao
ddb0b8c495
Merge pull request #3019 from dgquintas/channel_args_compression
...
Added C API functions for compression args handling (w/ tests)
9 years ago
Yang Gao
d7749b9596
Merge pull request #3036 from ctiller/build-cleanup
...
Remove accidental dependency on zookeeper in shutdown_test
9 years ago
Nathaniel Manista
e75ee388e1
Merge pull request #2969 from soltanmm/gravity-well
...
Add cancel_all_calls to Python server.
9 years ago
Vijay Pai
d2ea03174b
Merge pull request #2818 from ctiller/y12kdm3
...
Add a test of non-blocking API behavior
9 years ago
Craig Tiller
e180766906
Merge pull request #3007 from jboeuf/core_md_processor_fixes
...
Have a richer interface for auth metadata processors.
9 years ago
David Garcia Quintas
bb88b9007f
Merge branch 'master' of github.com:grpc/grpc into head_vs_tails
9 years ago
David Garcia Quintas
9c3685769d
Merge branch 'master' of github.com:grpc/grpc into comma-separated-ips
9 years ago
David Garcia Quintas
02dda837da
Merge branch 'master' of github.com:grpc/grpc into channel_args_compression
9 years ago
David Garcia Quintas
fe5f25490d
Improvements to the grpc_channel_args_compression_algorithm_set_state api
9 years ago
Masood Malekghassemi
28ed2fbfb8
Merge pull request #3032 from nathanielmanistaatgoogle/face
...
The (new) face interface of RPC Framework.
9 years ago
Nathaniel Manista
2432c224d9
Add a "transport" field to links.Ticket
...
This will be used for communication of transport-specific values and
objects up to applications.
9 years ago
Nathaniel Manista
9faff0e2b1
Four small bugfixes
...
(1) In grpc._links.service._Kernel.add_ticket, premetadata() the call
if it has not already been premetadataed for any non-None ticket
termination, not just links.Ticket.Termination.COMPLETION.
(2) In grpc.framework.core._reception, add an entry to
_REMOTE_TICKET_TERMINATION_TO_LOCAL_OUTCOME for REMOTE_FAILURE.
REMOTE_FAILURE on a received ticket indicates the remote side of the
operation blaming the local side for operation abortion.
(3) In grpc.framework.core._reception.ReceptionManager._abort, only
abort the operation's other managers if the operation has not already
terminated, as indicated by the "outcome" attribute of the
TerminationManager.
(4) In grpc.framework.core._reception.ReceptionManager._abort, don't
transmit the outcome to the other side of the operation. Either it came
from the other side in the first place and to send it back would be
telling the other side something it already knows, or it arose from a
network failure and there's no confidence that it would reach the other
side.
9 years ago
Craig Tiller
333ced0b8a
Remove accidental dependency on zookeeper in shutdown_test
9 years ago
Vijay Pai
e8a7e30a75
Eliminate public thread-pool interface
9 years ago
yang-g
46f2d34762
Move the default roots check before allocation
9 years ago
Nathaniel Manista
79c9b358d9
The face interface of RPC Framework.
...
This is the public API of the old face package of RPC Framework
extracted into a first-class interface and adapted to metadata, status,
and flow control.
9 years ago
Jan Tattermusch
04715888e6
Merge pull request #3029 from jtattermusch/csharp_responseheaders_and_tests
...
c# response headers support and code simplification
9 years ago
Masood Malekghassemi
03d281ab1b
Merge pull request #2968 from nathanielmanistaatgoogle/nathaniel-core
...
The RPC Framework core package.
9 years ago
Jan Tattermusch
578c7c5fe9
revert AssemblyInfo.cs
9 years ago
Jan Tattermusch
dca145bcfe
fix stylecop issues
9 years ago
Jan Tattermusch
4c25efa519
support for reading response headers on client side
9 years ago
Jan Tattermusch
3af838a2d7
simplify stream reads on client side
9 years ago
Jan Tattermusch
fb34a99d98
reading of response headers for unary response calls
9 years ago
Jan Tattermusch
ea02eb619d
introduce INativeCall interface to simplify testing
9 years ago