From 93d6b41898665b6df42b23d0a04b2b5e34668f12 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 25 Aug 2020 08:08:54 -0700 Subject: [PATCH] Disable AES in commit so as not to break other builds. --- node/Peer.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/node/Peer.hpp b/node/Peer.hpp index 4c8865c65..dd362d697 100644 --- a/node/Peer.hpp +++ b/node/Peer.hpp @@ -534,7 +534,10 @@ public: inline int8_t bondingPolicy() { return _bondingPolicy; } const AES *aesKeysIfSupported() const - { return (_vProto >= 10) ? _aesKeys : (const AES *)0; } + { return (const AES *)0; } + + //const AES *aesKeysIfSupported() const + //{ return (_vProto >= 10) ? _aesKeys : (const AES *)0; } private: struct _PeerPath