Browse Source

Disable AES in commit so as not to break other builds.

Adam Ierymenko 5 years ago
parent
commit
93d6b41898
1 changed files with 4 additions and 1 deletions
  1. 4 1
      node/Peer.hpp

+ 4 - 1
node/Peer.hpp

@@ -534,7 +534,10 @@ public:
 	inline int8_t bondingPolicy() { return _bondingPolicy; }
 	inline int8_t bondingPolicy() { return _bondingPolicy; }
 
 
 	const AES *aesKeysIfSupported() const
 	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:
 private:
 	struct _PeerPath
 	struct _PeerPath