diff options
author | Julien Boeuf <jboeuf@google.com> | 2015-07-07 15:23:30 -0700 |
---|---|---|
committer | Julien Boeuf <jboeuf@google.com> | 2015-07-16 22:42:02 -0700 |
commit | ea456fc2bf09e1b80a3add3b898175605da3bf60 (patch) | |
tree | c2add1eccaac408b7ffafee95ee41ba4086ba4a7 /src/core/transport | |
parent | c876923bc2a3d9c6bbc03f275a7fe68333b95600 (diff) |
Server auth metadata processor.
- Right now it is a global function: would be better to have this per
(secure) port.
- Changed the interface of the auth_context slightly to make it more
friendly.
- Positive tests pass. Still need some work on error case (have a
negative case as well).
- Fixing cpp auth context tests so that they use the shiny new C API.
Diffstat (limited to 'src/core/transport')
-rw-r--r-- | src/core/transport/stream_op.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transport/stream_op.h b/src/core/transport/stream_op.h index 964d39d14f..7d3024da10 100644 --- a/src/core/transport/stream_op.h +++ b/src/core/transport/stream_op.h @@ -103,7 +103,7 @@ void grpc_metadata_batch_merge(grpc_metadata_batch *target, grpc_metadata_batch *add); /** Add \a storage to the beginning of \a batch. storage->md is - assumed to be valid. + assumed to be valid. \a storage is owned by the caller and must survive for the lifetime of batch. This usually means it should be around for the lifetime of the call. */ |