summaryrefslogtreecommitdiff
path: root/src/third_party/kms-message/src/kms_message/kms_response.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/kms-message/src/kms_message/kms_response.h')
-rw-r--r--src/third_party/kms-message/src/kms_message/kms_response.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/third_party/kms-message/src/kms_message/kms_response.h b/src/third_party/kms-message/src/kms_message/kms_response.h
deleted file mode 100644
index d270f248826..00000000000
--- a/src/third_party/kms-message/src/kms_message/kms_response.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright 2018-present MongoDB, Inc.
- *
- * 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 KMS_RESPONSE_H
-#define KMS_RESPONSE_H
-
-#include "kms_message_defines.h"
-
-#include <sys/types.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef struct _kms_response_t kms_response_t;
-
-KMS_MSG_EXPORT (int)
-kms_response_get_status (kms_response_t *response);
-KMS_MSG_EXPORT (const char *)
-kms_response_get_body (kms_response_t *response, size_t *len);
-KMS_MSG_EXPORT (void) kms_response_destroy (kms_response_t *response);
-
-#ifdef __cplusplus
-} /* extern "C" */
-#endif
-
-#endif /* KMS_RESPONSE_H */