diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-05-05 07:34:56 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-05-05 07:34:56 -0700 |
commit | d53d87cbd3a93fa90ac1363fd5dc3b27dbb31cae (patch) | |
tree | d54bc3cc5e5b7ba21104b0b915093fd8b4183c58 /src/python | |
parent | 380b0f3b5d7a92c84178ce981a1b4213a3924920 (diff) | |
parent | 172791a80c8394c3528a045fd0db6784d280ed88 (diff) |
Merge pull request #1464 from yang-g/init
Expose max message size at the server side.
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/src/grpc/_adapter/_tag.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/python/src/grpc/_adapter/_tag.h b/src/python/src/grpc/_adapter/_tag.h index b18c44576d..64812aa7e7 100644 --- a/src/python/src/grpc/_adapter/_tag.h +++ b/src/python/src/grpc/_adapter/_tag.h @@ -44,14 +44,14 @@ replacement for its descriptive functionality until Python can move its whole C and C adapter stack to more closely resemble the core batching API. */ typedef enum { - PYGRPC_SERVER_RPC_NEW = 0, - PYGRPC_INITIAL_METADATA = 1, - PYGRPC_READ = 2, - PYGRPC_WRITE_ACCEPTED = 3, - PYGRPC_FINISH_ACCEPTED = 4, + PYGRPC_SERVER_RPC_NEW = 0, + PYGRPC_INITIAL_METADATA = 1, + PYGRPC_READ = 2, + PYGRPC_WRITE_ACCEPTED = 3, + PYGRPC_FINISH_ACCEPTED = 4, PYGRPC_CLIENT_METADATA_READ = 5, - PYGRPC_FINISHED_CLIENT = 6, - PYGRPC_FINISHED_SERVER = 7 + PYGRPC_FINISHED_CLIENT = 6, + PYGRPC_FINISHED_SERVER = 7 } pygrpc_tag_type; typedef struct { |