aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/security/server_auth_filter.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-11-19 08:53:23 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-11-19 08:53:23 -0800
commited43f51fffa338bb3e443d727dd345bcbfd4ae79 (patch)
treecac9f31ab47eae35457d1af220faa9d0b3884306 /src/core/security/server_auth_filter.c
parent70b080d2849692cbd14fe0cfd9089dc159a8f748 (diff)
Beginning to peel away mdctx from channel stack
Diffstat (limited to 'src/core/security/server_auth_filter.c')
-rw-r--r--src/core/security/server_auth_filter.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/security/server_auth_filter.c b/src/core/security/server_auth_filter.c
index fee962b576..5cfee6d139 100644
--- a/src/core/security/server_auth_filter.c
+++ b/src/core/security/server_auth_filter.c
@@ -58,7 +58,6 @@ typedef struct call_data {
typedef struct channel_data {
grpc_auth_context *auth_context;
grpc_server_credentials *creds;
- grpc_mdctx *mdctx;
} channel_data;
static grpc_metadata_array metadata_batch_to_md_array(
@@ -247,7 +246,6 @@ static void init_channel_elem(grpc_exec_ctx *exec_ctx,
chand->auth_context =
GRPC_AUTH_CONTEXT_REF(auth_context, "server_auth_filter");
chand->creds = grpc_server_credentials_ref(creds);
- chand->mdctx = args->metadata_context;
}
/* Destructor for channel data */