From b6f87565a9b63c0695b48d8dd0036ac7fe080142 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 23 Feb 2017 16:03:43 -0800 Subject: [PATCH] Add wake on LAN (wol) to rules language ethertype shorthand. --- rule-compiler/rule-compiler.js | 1 + 1 file changed, 1 insertion(+) diff --git a/rule-compiler/rule-compiler.js b/rule-compiler/rule-compiler.js index be4e5c640..7445d39fe 100644 --- a/rule-compiler/rule-compiler.js +++ b/rule-compiler/rule-compiler.js @@ -25,6 +25,7 @@ const CHARACTERISTIC_BITS = { const ETHERTYPES = { 'ipv4': 0x0800, 'arp': 0x0806, + 'wol': 0x0842, 'rarp': 0x8035, 'ipv6': 0x86dd, 'atalk': 0x809b,