diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2024-06-02 12:41:47 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2024-06-02 12:41:47 +0000 |
commit | aaada35af5a74bbdea395e0844b26f1f81c6cb93 (patch) | |
tree | a216d9b7f1791f56d10d27bad8d656c556acecc8 /sbin/dhcp6leased/dhcp6leased.h | |
parent | 9e73f2233650133b84a59527fb42e087e3d12db0 (diff) |
Implement renew & rebind.
Missed in previous.
Diffstat (limited to 'sbin/dhcp6leased/dhcp6leased.h')
-rw-r--r-- | sbin/dhcp6leased/dhcp6leased.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sbin/dhcp6leased/dhcp6leased.h b/sbin/dhcp6leased/dhcp6leased.h index e58cbe2376e..dc3c825f1e4 100644 --- a/sbin/dhcp6leased/dhcp6leased.h +++ b/sbin/dhcp6leased/dhcp6leased.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcp6leased.h,v 1.1 2024/06/02 12:28:05 florian Exp $ */ +/* $OpenBSD: dhcp6leased.h,v 1.2 2024/06/02 12:41:46 florian Exp $ */ /* * Copyright (c) 2017, 2021 Florian Obser <florian@openbsd.org> @@ -156,8 +156,10 @@ enum imsg_type { IMSG_RECONF_IFACE_IA_END, IMSG_RECONF_IFACE_END, IMSG_RECONF_END, - IMSG_SEND_DISCOVER, + IMSG_SEND_SOLICIT, IMSG_SEND_REQUEST, + IMSG_SEND_RENEW, + IMSG_SEND_REBIND, IMSG_SOCKET_IPC, IMSG_OPEN_UDPSOCK, IMSG_UDPSOCK, |