diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-21 21:31:22 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-10-21 21:31:22 -0600 |
commit | 26c61695dd785c2a434b4c02a406a683c8386fcc (patch) | |
tree | 816615159d5abd7382a57a8ede20e5387d4d39cc /libdhcp/include | |
parent | bc70ded6e8535f004b2c9f5f7a471fa548c33fab (diff) |
wip dhcp
Diffstat (limited to 'libdhcp/include')
-rw-r--r-- | libdhcp/include/libdhcp/dhcp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libdhcp/include/libdhcp/dhcp.h b/libdhcp/include/libdhcp/dhcp.h index 6970748..4cdd2e2 100644 --- a/libdhcp/include/libdhcp/dhcp.h +++ b/libdhcp/include/libdhcp/dhcp.h @@ -112,12 +112,12 @@ typedef void (*dhcp_callback_t)(enum dhcp_event, struct dhcp_lease); * @brief return value of @ref DHCP_run() */ enum { - DHCP_FAILED = 0, ///< Processing Fail - DHCP_RUNNING, ///< Processing DHCP protocol - DHCP_IP_ASSIGN, ///< First Occupy IP from DHPC server (if cbfunc == null, act as default default_ip_assign) - DHCP_IP_CHANGED, ///< Change IP address by new ip from DHCP (if cbfunc == null, act as default default_ip_update) - DHCP_IP_LEASED, ///< Stand by - DHCP_STOPPED ///< Stop processing DHCP protocol + DHCP_RET_FAILED = 0, ///< Processing Fail + DHCP_RET_RUNNING, ///< Processing DHCP protocol + DHCP_RET_IP_ASSIGN, ///< First Occupy IP from DHPC server (if cbfunc == null, act as default default_ip_assign) + DHCP_RET_IP_CHANGED, ///< Change IP address by new ip from DHCP (if cbfunc == null, act as default default_ip_update) + DHCP_RET_IP_LEASED, ///< Stand by + DHCP_RET_STOPPED ///< Stop processing DHCP protocol }; /* |