Compare commits

...

1 Commits

Author SHA1 Message Date
yashykt c365c7814c Automated change: Fix sanity tests 2024-04-17 01:34:09 +00:00
1 changed files with 5 additions and 6 deletions

View File

@ -19,12 +19,11 @@
#ifndef GRPC_CREDENTIALS_H
#define GRPC_CREDENTIALS_H
#include <grpc/support/port_platform.h>
#include <stdbool.h>
#include <grpc/grpc.h>
#include <grpc/grpc_security_constants.h>
#include <grpc/support/port_platform.h>
#ifdef __cplusplus
extern "C" {
@ -94,10 +93,10 @@ typedef struct {
const char* actor_token_type; /* Optional. */
} grpc_sts_credentials_options;
/** Creates an STS credentials following the STS Token Exchanged specifi ed in the
IETF draft https://tools.ietf.org/html/draft-ietf-oauth-token-exchange-16.
This API is used for experimental purposes for now and may change in the
future. */
/** Creates an STS credentials following the STS Token Exchanged specifi ed in
the IETF draft
https://tools.ietf.org/html/draft-ietf-oauth-token-exchange-16. This API is
used for experimental purposes for now and may change in the future. */
GRPCAPI grpc_call_credentials* grpc_sts_credentials_create(
const grpc_sts_credentials_options* options, void* reserved);