summaryrefslogtreecommitdiff
path: root/sbin/slaacd/slaacd.c
diff options
context:
space:
mode:
authorFlorian Obser <florian@cvs.openbsd.org>2018-07-09 07:41:16 +0000
committerFlorian Obser <florian@cvs.openbsd.org>2018-07-09 07:41:16 +0000
commitdb25c20630e2725c0fe562644862841ae622cd15 (patch)
treec8eddf57c44c7dabbb5cd367fcbbfb1148003023 /sbin/slaacd/slaacd.c
parent8578e900f491bcabcc4430ae91b15394c79a3be1 (diff)
Remove array of IMSG type names.
It was helpfull in the beginning to know which IMSG are flying around but unusable (and unsused) since slaacd(8) is on the ramdisk.
Diffstat (limited to 'sbin/slaacd/slaacd.c')
-rw-r--r--sbin/slaacd/slaacd.c38
1 files changed, 1 insertions, 37 deletions
diff --git a/sbin/slaacd/slaacd.c b/sbin/slaacd/slaacd.c
index fbf119cf464..6778659fa10 100644
--- a/sbin/slaacd/slaacd.c
+++ b/sbin/slaacd/slaacd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: slaacd.c,v 1.24 2018/07/07 12:08:07 sthen Exp $ */
+/* $OpenBSD: slaacd.c,v 1.25 2018/07/09 07:41:15 florian Exp $ */
/*
* Copyright (c) 2017 Florian Obser <florian@openbsd.org>
@@ -53,42 +53,6 @@
#include "engine.h"
#include "control.h"
-#ifndef SMALL
-const char* imsg_type_name[] = {
- "IMSG_NONE",
- "IMSG_CTL_LOG_VERBOSE",
- "IMSG_CTL_SHOW_INTERFACE_INFO",
- "IMSG_CTL_SHOW_INTERFACE_INFO_RA",
- "IMSG_CTL_SHOW_INTERFACE_INFO_RA_PREFIX",
- "IMSG_CTL_SHOW_INTERFACE_INFO_RA_RDNS",
- "IMSG_CTL_SHOW_INTERFACE_INFO_RA_DNSSL",
- "IMSG_CTL_SHOW_INTERFACE_INFO_ADDR_PROPOSALS",
- "IMSG_CTL_SHOW_INTERFACE_INFO_ADDR_PROPOSAL",
- "IMSG_CTL_SHOW_INTERFACE_INFO_DFR_PROPOSALS",
- "IMSG_CTL_SHOW_INTERFACE_INFO_DFR_PROPOSAL",
- "IMSG_CTL_END",
- "IMSG_UPDATE_ADDRESS",
- "IMSG_CTL_SEND_SOLICITATION",
- "IMSG_SOCKET_IPC",
- "IMSG_ICMP6SOCK",
- "IMSG_ROUTESOCK",
- "IMSG_CONTROLFD",
- "IMSG_STARTUP",
- "IMSG_STARTUP_DONE",
- "IMSG_UPDATE_IF",
- "IMSG_REMOVE_IF",
- "IMSG_RA",
- "IMSG_PROPOSAL",
- "IMSG_PROPOSAL_ACK",
- "IMSG_CONFIGURE_ADDRESS",
- "IMSG_DEL_ADDRESS",
- "IMSG_DEL_ROUTE",
- "IMSG_FAKE_ACK",
- "IMSG_CONFIGURE_DFR",
- "IMSG_WITHDRAW_DFR",
-};
-#endif /* SMALL */
-
__dead void usage(void);
__dead void main_shutdown(void);