Masood Malekghassemi
758a0c252e
Merge pull request #1058 from nathanielmanistaatgoogle/python-refactoring
...
Use distinct enums for distinct ticket types
10 years ago
Nathaniel Manista
e2e443c1d4
Use distinct enums for distinct ticket types
10 years ago
Jorge Canizales
6b64c811b3
Fixes iPhone platform detection
10 years ago
Masood Malekghassemi
afdc24ae2b
Merge pull request #1055 from nathanielmanistaatgoogle/python-refactoring
...
Python refactoring
10 years ago
Nathaniel Manista
ea34b1f078
Merge pull request #1054 from murgatroid99/python_setup_lists
...
Fixed argument types in setup.py
10 years ago
Nathaniel Manista
8d81365a3c
Iterate over an enum since we can
...
Since enums are themselves iterable there's no need to maintain a list
of the elements of the enum dating from back before the enum when its
values were just independent constants that hung out together.
10 years ago
Nathaniel Manista
ae3e5b53f0
Change managers to pass each other Outcomes
...
This refactoring greatly reduces the base-internal use of packet kinds
and will make much simpler a future change distinguishing front-to-back
packet kinds from back-to-front packet kinds.
10 years ago
Nathaniel Manista
c4fada6e9a
Add service name to Python early_adopter
10 years ago
murgatroid99
2493ea6d4b
Fixed argument types in setup.py
10 years ago
Vijay Pai
d3d55c76f1
Merge pull request #1003 from yang-g/untypedAPI
...
Anonymous API implementation
10 years ago
Jan Tattermusch
c0b3721d61
added support for metadata
10 years ago
Yang Gao
1ad253d137
expose the server's cq through the generic service object
10 years ago
Yang Gao
5333c5a261
Merge branch 'master' into untypedAPI
10 years ago
David Klempner
1cc9fae6b4
Merge pull request #1048 from nicolasnoble/run_tests_defaults
...
Defaulting run_tests to just opt.
10 years ago
David Klempner
1494fe5844
Merge pull request #1050 from ctiller/cleanup
...
Remove dead code
10 years ago
jboeuf
c91a9f942e
Merge pull request #1011 from yang-g/jwt
...
Put back C++ JWTCredentials code and add a test case in interop test.
10 years ago
Craig Tiller
2da7ca84fd
Remove dead code
10 years ago
Nicolas "Pixel" Noble
1fb5e821a4
Defaulting run_tests to just opt.
10 years ago
Yang Gao
4c3ee74d4e
Merge pull request #1043 from icodeplus/remove_else_code
...
remove 'else' code, release lock by destructor
10 years ago
Nicolas "Pixel" Noble
7c1c7e8e22
Using cc and c++ instead of gcc and g++.
...
Not all systems are equal, and have gcc. However, cc and c++ are more common aliases for the system's compiler.
FreeBSD is an example.
10 years ago
Jorge Canizales
f5a5943a59
Adds GPR_CPU_IPHONE to the checks in port_platform.h
10 years ago
Ruyi Wang
b486ba6b0d
remove 'else' code, release lock by destructor
10 years ago
Yang Gao
2fbbb9bd95
copy and paste does not work
10 years ago
Yang Gao
94e296c357
Add error logs when credentials are created with non-positive lifetimes
10 years ago
Yang Gao
42a2e6f1b7
Merge pull request #1039 from nicolasnoble/bytecount
...
Allowing us to import google::protobuf::int64.
10 years ago
Yang Gao
dca15a6d1e
add a comment
10 years ago
Yang Gao
45c09db87c
sort the tags, this is not necessary, just make it look better
10 years ago
Yang Gao
9fbbc7bb13
add one bidi test
10 years ago
Nicolas "Pixel" Noble
764971354c
Allowing us to import google::protobuf::int64.
...
If for any reason, our definition of gpr_int64 is different from the definition of google::protobuf::int64, the virtual override would fail, as this needs to be of the precisely exactly the same type.
That change allows us to use protobuf's int64 definition.
10 years ago
Jorge Canizales
30e666cae7
Creates cpu_iphone.c
...
So that cpu_posix.c can be left untouched for the other platforms.
10 years ago
Tim Emiola
a181d2127a
Merge pull request #1033 from murgatroid99/node_protobuf_dependency_fix
...
Switched protobufjs dependency to npm package instead of GitHub
10 years ago
Yang Gao
0049c51c1a
Merge pull request #1032 from nicolasnoble/protobuf-alternate
...
Adding support for alternative protobuf libraries.
10 years ago
Yang Gao
2729fbadcf
wording change
10 years ago
murgatroid99
892c3cac05
Resolved merge conflicts with master
10 years ago
murgatroid99
3c3d860a02
Node package version bump
10 years ago
Vijay Pai
c97638b10b
Merge pull request #1012 from dklempner/nobarrier
...
Add a no_barrier_load atomic operation.
10 years ago
Michael Lumish
6bb4b7b216
Merge pull request #1034 from sunxiaoguang/fix_duplicated_symbols
...
Fix duplicated symbols
10 years ago
Nathaniel Manista
f85720eb33
Merge pull request #1036 from Arkq/master
...
Fix port selection for Python server.
10 years ago
Nicolas "Pixel" Noble
613d6fe997
Moving ZeroCopyOutputStream to grpc++/config.h.
10 years ago
Nathaniel Manista
234c87f63e
Merge pull request #1000 from nicolasnoble/python-plugin-no-std
...
Removing the "using std::string" in the python plugin code.
10 years ago
Vijay Pai
f70259f74f
Merge pull request #1026 from tatsuhiro-t/fix-client-bad-goaway-last-stream-id
...
Fix client sending invalid GOAWAY last-stream-id
10 years ago
Tatsuhiro Tsujikawa
1cbf8d7f16
Update doc as requested in review
10 years ago
Tatsuhiro Tsujikawa
229000fd2b
Use "host" header field if ":authority" is not present
...
":authority" is not mandatory in HTTP/2 unless request method is
"CONNECT". If ":authority" is not present, server should look for
"host" header field. This patch does not check method value, it is a
future TODO. This is a first step for GH-1022.
10 years ago
Arkadiusz Bokowy
5d85675b56
Fix port selection for server
...
Commit 31e65be
introduces a bug which causes starting server on a randomly
selected port.
10 years ago
Yang Gao
05e3eefcf8
Early return when duration is non-positive
10 years ago
Xiaoguang Sun
8a929a965b
Fix duplicated symbols
...
Fix duplicated symbols caused by having definition instead of declaration in
header file.
10 years ago
murgatroid99
bffe7d7bf1
Switched protobufjs dependency to npm package instead of GitHub
10 years ago
Nicolas Noble
d446eb86fa
Adding initial support for alternative protobuf libraries.
10 years ago
Yang Gao
4999649653
Rename to AsyncGeneric*
10 years ago
Yang Gao
c3be769409
Merge pull request #983 from jboeuf/refresh_token_parsing
...
Adding refresh token credentials.
10 years ago