Skip to content

Commit

Permalink
code refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
mobizt committed Jan 31, 2025
1 parent a77d758 commit 3da7f99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/AsyncClient/AsyncClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class AsyncClientClass : public ResultBase, RTDBResultBase

function_return_type sendHeader(async_data *sData, const uint8_t *data, size_t len) { return sendImpl(sData, data, len, len, astate_send_header); }

// Handles file/blob raw, base64 and resumable data sending process.
// Handles file/blob data sending process of raw, base64 encoded string and resumable upload.
function_return_type sendFileData(async_data *sData, async_state state = astate_send_payload)
{
function_return_type ret = ret_continue;
Expand Down
2 changes: 1 addition & 1 deletion src/core/Options.h
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@
// Raw chunk size for TCP's read and write operations.
#define FIREBASE_CHUNK_SIZE 2048

// Base64 encoded string chunk size for TCP's read and write operations.
// Base64 encoded string chunk size for TCP's write operation.
// This used in Realtime database with File implementation.
#define FIREBASE_BASE64_CHUNK_SIZE 1026

Expand Down

0 comments on commit 3da7f99

Please sign in to comment.