summary refs log tree commit diff
path: root/bin/wake.c
blob: c9bc40c3ab02e9178a0d2b91e74ad7abf0ab5a1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* Copyright (c) 2017, June McEnroe <programble@gmail.com>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <sys/types.h>

#include <err.h>
#include <netinet/in.h>
#include <stdint.h>
#include <stdlib.h>
#include <sys/socket.h>
#include <sysexits.h>

#define MAC 0x04, 0x7D, 0x7B, 0xD5, 0x6A, 0x53

const uint8_t payload[] = {
    0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
    MAC, MAC, MAC, MAC, MAC, MAC, MAC, MAC,
    MAC, MAC, MAC, MAC, MAC, MAC, MAC, MAC,
};

int main() {
    int sock = socket(PF_INET, SOCK_DGRAM, 0);
    if (sock < 0) err(EX_OSERR, "socket");

    int on = 1;
    int error = setsockopt(sock, SOL_SOCKET, SO_BROADCAST, &on, sizeof(on));
    if (error) err(EX_OSERR, "setsockopt");

    struct sockaddr_in addr = {
        .sin_family = AF_INET,
        .sin_port = 9,
        .sin_addr.s_addr = INADDR_BROADCAST,
    };

    ssize_t len = sendto(
        sock, payload, sizeof(payload), 0,
        (struct sockaddr *)&addr, sizeof(addr)
    );
    if (len < 0) err(EX_IOERR, "sendto");

    return EX_OK;
}
-21 23:32:17 -0400'>2018-09-21Add scheme -i to swap white and blackJune McEnroe 2018-09-21Map caps lock to escape on Linux consoleJune McEnroe 2018-09-19Fix README mandoc lintsJune McEnroe 2018-09-19Un-NOT trans.alpha values in pngoJune McEnroe 2018-09-18Refactor reads in pngo and clear palette between filesJune McEnroe 2018-09-17Add tRNS support to pngoJune McEnroe 2018-09-11Move gfx man pages to gfx/manJune McEnroe 2018-09-11Move bin man pages to bin/manJune McEnroe 2018-09-11Rewrite gfx.7 and render plaintext READMEJune McEnroe 2018-09-11Remove GAMES from BINSJune McEnroe 2018-09-11Rewrite bin.7 and render to plaintext READMEJune McEnroe 2018-09-11Add "blank" lines to man pagesJune McEnroe 2018-09-10Add mdoc syntax fileJune McEnroe 2018-09-08Fix Nm usage in multi-name man pagesJune McEnroe 2018-09-08Put real dates on man pagesJune McEnroe 2018-09-08Replace gfx README with REAMDE.7June McEnroe 2018-09-08Link gfx man pages in ~/.localJune McEnroe