diff options
author | Craig Tiller <ctiller@google.com> | 2016-05-05 08:44:36 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-05-05 08:44:36 -0700 |
commit | 94e15760737660a655896e5a208897b71f402550 (patch) | |
tree | 877a748af989a0112a7edeeb168d5e2523dce107 /src/core/lib/iomgr | |
parent | 781bab5399e91c99b70af3ec242c321585d22c07 (diff) |
Error handling progress in chttp2 transport
Diffstat (limited to 'src/core/lib/iomgr')
-rw-r--r-- | src/core/lib/iomgr/error.c | 2 | ||||
-rw-r--r-- | src/core/lib/iomgr/error.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/error.c b/src/core/lib/iomgr/error.c index 55bb1b5660..5812af5c93 100644 --- a/src/core/lib/iomgr/error.c +++ b/src/core/lib/iomgr/error.c @@ -102,6 +102,8 @@ static const char *error_int_name(grpc_error_ints key) { return "index"; case GRPC_ERROR_INT_SIZE: return "size"; + case GRPC_ERROR_INT_HTTP2_ERROR: + return "http2_error"; } GPR_UNREACHABLE_CODE(return "unknown"); } diff --git a/src/core/lib/iomgr/error.h b/src/core/lib/iomgr/error.h index db5e378e77..234782ab03 100644 --- a/src/core/lib/iomgr/error.h +++ b/src/core/lib/iomgr/error.h @@ -50,6 +50,7 @@ typedef enum { GRPC_ERROR_INT_OFFSET, GRPC_ERROR_INT_INDEX, GRPC_ERROR_INT_SIZE, + GRPC_ERROR_INT_HTTP2_ERROR, } grpc_error_ints; typedef enum { |