You've already forked pgbackrest
mirror of
https://github.com/pgbackrest/pgbackrest.git
synced 2025-09-16 09:06:18 +02:00
Add/update comments in storage/s3 module.
This commit is contained in:
@@ -19,8 +19,8 @@ Functions
|
||||
typedef struct StorageS3RequestAsyncParam
|
||||
{
|
||||
VAR_PARAM_HEADER;
|
||||
const HttpQuery *query;
|
||||
const Buffer *content;
|
||||
const HttpQuery *query; // Query parameters
|
||||
const Buffer *content; // Request content
|
||||
} StorageS3RequestAsyncParam;
|
||||
|
||||
#define storageS3RequestAsyncP(this, verb, uri, ...) \
|
||||
@@ -32,8 +32,8 @@ HttpRequest *storageS3RequestAsync(StorageS3 *this, const String *verb, const St
|
||||
typedef struct StorageS3ResponseParam
|
||||
{
|
||||
VAR_PARAM_HEADER;
|
||||
bool allowMissing;
|
||||
bool contentIo;
|
||||
bool allowMissing; // Allow missing files (caller can check response code)
|
||||
bool contentIo; // Is IoRead interface required to read content?
|
||||
} StorageS3ResponseParam;
|
||||
|
||||
#define storageS3ResponseP(request, ...) \
|
||||
@@ -45,10 +45,10 @@ HttpResponse *storageS3Response(HttpRequest *request, StorageS3ResponseParam par
|
||||
typedef struct StorageS3RequestParam
|
||||
{
|
||||
VAR_PARAM_HEADER;
|
||||
const HttpQuery *query;
|
||||
const Buffer *content;
|
||||
bool allowMissing;
|
||||
bool contentIo;
|
||||
const HttpQuery *query; // Query parameters
|
||||
const Buffer *content; // Request content
|
||||
bool allowMissing; // Allow missing files (caller can check response code)
|
||||
bool contentIo; // Is IoRead interface required to read content?
|
||||
} StorageS3RequestParam;
|
||||
|
||||
#define storageS3RequestP(this, verb, uri, ...) \
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/***********************************************************************************************************************************
|
||||
S3 Storage File write
|
||||
S3 Storage File Write
|
||||
***********************************************************************************************************************************/
|
||||
#include "build.auto.h"
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
/***********************************************************************************************************************************
|
||||
S3 Storage File write
|
||||
S3 Storage File Write
|
||||
***********************************************************************************************************************************/
|
||||
#ifndef STORAGE_S3_WRITE_H
|
||||
#define STORAGE_S3_WRITE_H
|
||||
|
Reference in New Issue
Block a user