diff options
author | 2018-07-10 22:14:19 +0000 | |
---|---|---|
committer | 2018-07-10 22:14:19 +0000 | |
commit | ce74f912b307936d94eedb0596d522d8bcc68862 (patch) | |
tree | fcb855dd52c61407f4cc6e416136955eeee39c71 /usr.sbin/rad/rad.h | |
parent | remove unused variable; pointed out by llvm (diff) | |
download | wireguard-openbsd-ce74f912b307936d94eedb0596d522d8bcc68862.tar.xz wireguard-openbsd-ce74f912b307936d94eedb0596d522d8bcc68862.zip |
remove newd control leftovers
Diffstat (limited to 'usr.sbin/rad/rad.h')
-rw-r--r-- | usr.sbin/rad/rad.h | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/usr.sbin/rad/rad.h b/usr.sbin/rad/rad.h index d670d1d18ea..c86b9b22d75 100644 --- a/usr.sbin/rad/rad.h +++ b/usr.sbin/rad/rad.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rad.h,v 1.1 2018/07/10 16:39:54 florian Exp $ */ +/* $OpenBSD: rad.h,v 1.2 2018/07/10 22:14:19 florian Exp $ */ /* * Copyright (c) 2018 Florian Obser <florian@openbsd.org> @@ -51,10 +51,6 @@ enum imsg_type { IMSG_NONE, IMSG_CTL_LOG_VERBOSE, IMSG_CTL_RELOAD, - IMSG_CTL_SHOW_ENGINE_INFO, - IMSG_CTL_SHOW_FRONTEND_INFO, - IMSG_CTL_SHOW_MAIN_INFO, - IMSG_CTL_END, IMSG_RECONF_CONF, IMSG_RECONF_RA_IFACE, IMSG_RECONF_RA_AUTOPREFIX, @@ -106,22 +102,6 @@ struct rad_conf { SIMPLEQ_HEAD(ra_iface_conf_head, ra_iface_conf) ra_iface_list; }; -struct ctl_frontend_info { - int yesno; - int integer; - char global_text[RAD_MAXTEXT]; -}; - -struct ctl_engine_info { - char name[IF_NAMESIZE]; - int yesno; - int integer; -}; - -struct ctl_main_info { - char text[RAD_MAXTEXT]; -}; - struct imsg_ra_rs { uint32_t if_index; struct sockaddr_in6 from; |