diff options
author | Craig Tiller <ctiller@google.com> | 2015-05-05 08:44:47 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-05-05 08:44:47 -0700 |
commit | 5fdcbb7fbebe6efd353494a8f316216f13f7cf13 (patch) | |
tree | 50ca95b4a61bf94954e1c1db0f138cc29b47487a /src/python | |
parent | 8e7fe9b9f01f88e322b97bdd5ed399395e563cde (diff) | |
parent | d53d87cbd3a93fa90ac1363fd5dc3b27dbb31cae (diff) |
Merge github.com:grpc/grpc into bye-bye-completion-queue-pie
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 { |