Skip to content

Commit 53af55e

Browse files
committed
Merge remote-tracking branch 'origin/new_aead'
2 parents 519f543 + 43d0b6d commit 53af55e

27 files changed

Lines changed: 2103 additions & 886 deletions

cppForSwig/AsyncClient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ void BlockDataViewer::addPublicKey(const SecureBinaryData& pubkey)
7373
///////////////////////////////////////////////////////////////////////////////
7474
shared_ptr<BlockDataViewer> BlockDataViewer::getNewBDV(const string& addr,
7575
const string& port, const string& datadir, const PassphraseLambda& passLbd,
76-
const bool& ephemeralPeers,
76+
const bool& ephemeralPeers, bool oneWayAuth,
7777
shared_ptr<RemoteCallback> callbackPtr)
7878
{
7979
//create socket object
8080
auto sockptr = make_shared<WebSocketClient>(addr, port, datadir, passLbd,
81-
ephemeralPeers, callbackPtr);
81+
ephemeralPeers, oneWayAuth, callbackPtr);
8282

8383
//instantiate bdv object
8484
BlockDataViewer* bdvPtr = new BlockDataViewer(sockptr);

cppForSwig/AsyncClient.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ namespace AsyncClient
427427
static std::shared_ptr<BlockDataViewer> getNewBDV(
428428
const std::string& addr, const std::string& port,
429429
const std::string& datadir, const PassphraseLambda&,
430-
const bool& ephemeralPeers,
430+
const bool& ephemeralPeers, bool oneWayAuth,
431431
std::shared_ptr<RemoteCallback> callbackPtr);
432432

433433
void registerWithDB(BinaryData magic_word);

0 commit comments

Comments
 (0)