1
0
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:
David Steele
2020-06-26 06:50:20 -04:00
parent 974cc10b90
commit e53de3ce46
3 changed files with 10 additions and 10 deletions

View File

@@ -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, ...) \

View File

@@ -1,5 +1,5 @@
/***********************************************************************************************************************************
S3 Storage File write
S3 Storage File Write
***********************************************************************************************************************************/
#include "build.auto.h"

View File

@@ -1,5 +1,5 @@
/***********************************************************************************************************************************
S3 Storage File write
S3 Storage File Write
***********************************************************************************************************************************/
#ifndef STORAGE_S3_WRITE_H
#define STORAGE_S3_WRITE_H