aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/channel/http_server_filter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/channel/http_server_filter.c')
-rw-r--r--src/core/channel/http_server_filter.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/core/channel/http_server_filter.c b/src/core/channel/http_server_filter.c
index ae8660da92..a10b105494 100644
--- a/src/core/channel/http_server_filter.c
+++ b/src/core/channel/http_server_filter.c
@@ -40,12 +40,12 @@
#include "src/core/transport/static_metadata.h"
typedef struct call_data {
- gpr_uint8 seen_path;
- gpr_uint8 seen_post;
- gpr_uint8 sent_status;
- gpr_uint8 seen_scheme;
- gpr_uint8 seen_te_trailers;
- gpr_uint8 seen_authority;
+ uint8_t seen_path;
+ uint8_t seen_post;
+ uint8_t sent_status;
+ uint8_t seen_scheme;
+ uint8_t seen_te_trailers;
+ uint8_t seen_authority;
grpc_linked_mdelem status;
grpc_linked_mdelem content_type;
@@ -58,7 +58,7 @@ typedef struct call_data {
grpc_closure hs_on_recv;
} call_data;
-typedef struct channel_data { gpr_uint8 unused; } channel_data;
+typedef struct channel_data { uint8_t unused; } channel_data;
typedef struct {
grpc_call_element *elem;