summary refs log tree commit diff
path: root/bin/wake.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-08-28 17:01:44 -0400
committerJune McEnroe <june@causal.agency>2019-08-28 17:01:44 -0400
commitad288eb633b2df401e044f2245168645514363d9 (patch)
tree8066450409921bfd8a97e174a4693901c9ef9ef9 /bin/wake.c
parentAdd The Fated Sky (diff)
downloadsrc-ad288eb633b2df401e044f2245168645514363d9.tar.gz
src-ad288eb633b2df401e044f2245168645514363d9.zip
Remove wake
RIP again, thursday. I don't think the RPi3 even knows how to suspend.
Diffstat (limited to 'bin/wake.c')
-rw-r--r--bin/wake.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/bin/wake.c b/bin/wake.c
deleted file mode 100644
index 82fa2e6b..00000000
--- a/bin/wake.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/* Copyright (C) 2017  June McEnroe <june@causal.agency>
- *
- * 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 <stdlib.h>
-#include <sys/socket.h>
-#include <sysexits.h>
-
-typedef unsigned char byte;
-
-#define MAC 0x04, 0x7D, 0x7B, 0xD5, 0x6A, 0x53
-static const byte Payload[102] = {
-	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 size = sendto(
-		sock, Payload, sizeof(Payload), 0,
-		(struct sockaddr *)&addr, sizeof(addr)
-	);
-	if (size < 0) err(EX_IOERR, "sendto");
-
-	return EX_OK;
-}