Sha256: 57b41952532a5d5e63f194cea4200fdcbd95e8311943468e608cda60890d3034

Contents?: true

Size: 1.69 KB

Versions: 22

Compression:

Stored size: 1.69 KB

Contents

/*
 *
 * Copyright 2016 gRPC authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#ifndef GRPC_CORE_LIB_TRANSPORT_ERROR_UTILS_H
#define GRPC_CORE_LIB_TRANSPORT_ERROR_UTILS_H

#include "src/core/lib/iomgr/error.h"
#include "src/core/lib/transport/http2_errors.h"

/// A utility function to get the status code and message to be returned
/// to the application.  If not set in the top-level message, looks
/// through child errors until it finds the first one with these attributes.
/// All attributes are pulled from the same child error. If any of the
/// attributes (code, msg, http_status) are unneeded, they can be passed as
/// NULL.
void grpc_error_get_status(grpc_error *error, gpr_timespec deadline,
                           grpc_status_code *code, grpc_slice *slice,
                           grpc_http2_error_code *http_status);

/// A utility function to check whether there is a clear status code that
/// doesn't need to be guessed in \a error. This means that \a error or some
/// child has GRPC_ERROR_INT_GRPC_STATUS set, or that it is GRPC_ERROR_NONE or
/// GRPC_ERROR_CANCELLED
bool grpc_error_has_clear_grpc_status(grpc_error *error);

#endif /* GRPC_CORE_LIB_TRANSPORT_ERROR_UTILS_H */

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
grpc-1.7.3-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.7.3 src/core/lib/transport/error_utils.h
grpc-1.7.2-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.7.2 src/core/lib/transport/error_utils.h
grpc-1.7.1-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.7.1 src/core/lib/transport/error_utils.h
grpc-1.7.0-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.7.0 src/core/lib/transport/error_utils.h
grpc-1.7.0.pre1-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.7.0.pre1 src/core/lib/transport/error_utils.h
grpc-1.6.7-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.6.7 src/core/lib/transport/error_utils.h
grpc-1.6.6-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.6.6 src/core/lib/transport/error_utils.h
grpc-1.6.4 src/core/lib/transport/error_utils.h
grpc-1.6.4-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.6.2-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.6.2 src/core/lib/transport/error_utils.h
grpc-1.6.0-x86_64-linux src/core/lib/transport/error_utils.h
grpc-1.6.0 src/core/lib/transport/error_utils.h