This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/modules/receiver/announced.js b/modules/receiver/announced.js | |
index 21f1128..4c583c1 100644 | |
--- a/modules/receiver/announced.js | |
+++ b/modules/receiver/announced.js | |
@@ -72,16 +72,19 @@ module.exports = function(receiverId, configData, api) { | |
}) | |
}) | |
- function retrieve(stat, address) { | |
+ async function retrieve(stat, address) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 61.07% [kernel] [k] hypercall_page ` | |
- hypercall_page a | |
+ 54.98% __sendmsg_nocancel a | |
18.46% syscall a | |
+ 8.74% 0x7fd6be8f472d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oct 20 19:50:11 CCCHH daemon.warn radvd[1739]: RDNSS address 2001:bf7:180::d01 received on br-client from fe80::9cba:76ff:feae:d842 is not advertised by us | |
Oct 20 19:50:11 CCCHH daemon.warn radvd[1739]: RDNSS address 2001:bf7:180::e01 received on br-client from fe80::9cba:76ff:feae:d842 is not advertised by us | |
Oct 20 19:50:11 CCCHH daemon.warn radvd[1739]: DNSSL suffix ffhh received on br-client from fe80::9cba:76ff:feae:d842 is not advertised by us | |
Oct 20 19:50:12 CCCHH daemon.warn radvd[1739]: our AdvOtherConfigFlag on br-client doesn't agree with fe80::b00f:c0ff:fe7a:47f7 | |
Oct 20 19:50:12 CCCHH daemon.warn radvd[1739]: our AdvValidLifetime on br-client for fd51:2bb2:fd0d:: doesn't agree with fe80::b00f:c0ff:fe7a:47f7 | |
Oct 20 19:50:12 CCCHH daemon.warn radvd[1739]: our AdvPreferredLifetime on br-client for fd51:2bb2:fd0d:: doesn't agree with fe80::b00f:c0ff:fe7a:47f7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def maybe_node_by_fuzzy_mac(self, mac): | |
mac_a = mac.lower() | |
for node in self._nodes: | |
if 'legacy' in node.flags and node.flags['legagcy'] == True: | |
for mac_b in node.macs: | |
if is_derived_mac(mac_a, mac_b): | |
return node | |
raise KeyError |