! Copyright (C) 2012 John Benediktsson ! See http://factorcode.org/license.txt for BSD license USING: arrays destructors io.sockets kernel math.parser sequences splitting ; IN: wake-on-lan ] B{ } map-as ; : wake-on-lan-packet ( mac-address -- bytearray ) [ 16 ] [ mac-address-bytes ] bi* concat B{ 0xff 0xff 0xff 0xff 0xff 0xff } prepend ; PRIVATE> : wake-on-lan ( mac-address broadcast-ip -- ) [ wake-on-lan-packet ] [ 9 ] bi* f 0 [ send ] with-disposal ;