netxduo
NX_DHCPV6
is only used within netxduo.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
netxduo
NX_DHCPV6
NX_DHCPV6 struct
Syntax
Show:
Summary
Declaration
from
nxd_dhcpv6_client.h:686
typedef
struct
NX_DHCPV6_STRUCT
{
ULONG
nx_dhcpv6_id
;
CHAR
*
nx_dhcpv6_name
;
UINT
nx_dhcpv6_client_address_index
[
NX_DHCPV6_MAX_IA_ADDRESS
]
;
UINT
nx_dhcpv6_client_interface_index
;
TX_THREAD
nx_dhcpv6_thread
;
TX_EVENT_FLAGS_GROUP
nx_dhcpv6_events
;
TX_MUTEX
nx_dhcpv6_client_mutex
;
TX_TIMER
nx_dhcpv6_IP_lifetime_timer
;
TX_TIMER
nx_dhcpv6_session_timer
;
NX_IP
*
nx_dhcpv6_ip_ptr
;
NX_PACKET_POOL
*
nx_dhcpv6_pool_ptr
;
NX_UDP_SOCKET
nx_dhcpv6_socket
;
UCHAR
nx_dhcpv6_started
;
UCHAR
nx_dhcpv6_state
;
USHORT
nx_status_code
;
UINT
nx_dhcpv6_sleep_flag
;
NX_DHCPV6_MESSAGE_HDR
nx_dhcpv6_message_hdr
;
NX_DHCPV6_DUID
nx_dhcpv6_client_duid
;
NX_DHCPV6_DUID
nx_dhcpv6_server_duid
;
NX_DHCPV6_ELAPSED_TIME
nx_dhcpv6_elapsed_time
;
NX_DHCPV6_IA_NA
nx_dhcpv6_iana
;
NX_DHCPV6_IA_ADDRESS
nx_dhcpv6_ia
[
NX_DHCPV6_MAX_IA_ADDRESS
]
;
NX_DHCPV6_PREFERENCE
nx_dhcpv6_preference
;
NX_DHCPV6_OPTIONREQUEST
nx_dhcpv6_option_request
;
NX_DHCPV6_CLIENT_FQDN
nx_dhcpv6_client_FQDN
;
ULONG
nx_dhcpv6_IP_lifetime_time_accrued
;
UCHAR
nx_status_message
[
NX_DHCPV6_MAX_MESSAGE_SIZE
]
;
NXD_ADDRESS
nx_dhcpv6_server_address
;
NXD_ADDRESS
nx_dhcpv6_DNS_name_server_address
[
NX_DHCPV6_NUM_DNS_SERVERS
]
;
NXD_ADDRESS
nx_dhcpv6_time_server_address
[
NX_DHCPV6_NUM_TIME_SERVERS
]
;
NXD_ADDRESS
nx_dhcpv6_client_destination_address
;
UCHAR
nx_dhcpv6_domain_name
[
NX_DHCPV6_DOMAIN_NAME_BUFFER_SIZE
]
;
UCHAR
nx_dhcpv6_time_zone
[
NX_DHCPV6_TIME_ZONE_BUFFER_SIZE
]
;
ULONG
nx_dhcpv6_solicitations_sent
;
ULONG
nx_dhcpv6_solicitation_responses
;
ULONG
nx_dhcpv6_requests_sent
;
ULONG
nx_dhcpv6_request_responses
;
ULONG
nx_dhcpv6_renews_sent
;
ULONG
nx_dhcpv6_renew_responses
;
ULONG
nx_dhcpv6_rebinds_sent
;
ULONG
nx_dhcpv6_rebind_responses
;
ULONG
nx_dhcpv6_releases_sent
;
ULONG
nx_dhcpv6_release_responses
;
ULONG
nx_dhcpv6_confirms_sent
;
ULONG
nx_dhcpv6_confirm_responses
;
ULONG
nx_dhcpv6_declines_sent
;
ULONG
nx_dhcpv6_decline_responses
;
ULONG
nx_dhcpv6_inform_req_sent
;
ULONG
nx_dhcpv6_inform_req_responses
;
ULONG
nx_dhcpv6_transmission_timeout
;
ULONG
nx_dhcpv6_retransmission_count
;
ULONG
nx_dhcpv6_init_retransmission_timeout
;
ULONG
nx_dhcpv6_max_retransmission_count
;
ULONG
nx_dhcpv6_max_retransmission_timeout
;
ULONG
nx_dhcpv6_max_retransmission_duration
;
UINT
nx_dhcpv6_request_solicit_mode
;
UINT
nx_dhcpv6_reply_option_flags
;
USHORT
nx_dhcpv6_reply_option_current_pref_value
;
UCHAR
nx_dhcpv6_received_message_type
;
UCHAR
nx_dhcpv6_reserved
;
VOID
(
*
nx_dhcpv6_state_change_callback
)
(
struct
NX_DHCPV6_STRUCT
*
dhcpv6_ptr
,
UINT
old_state
,
UINT
new_state
)
;
VOID
(
*
nx_dhcpv6_server_error_handler
)
(
struct
NX_DHCPV6_STRUCT
*
dhcpv6_ptr
,
UINT
op_code
,
UINT
status_code
,
UINT
message_type
)
;
}
NX_DHCPV6
;
Fields
Field
Declared as
NX_DHCPV6_STRUCT::nx_dhcpv6_id
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_name
CHAR
*
NX_DHCPV6_STRUCT::nx_dhcpv6_client_address_index
UINT
[
NX_DHCPV6_MAX_IA_ADDRESS
]
NX_DHCPV6_STRUCT::nx_dhcpv6_client_interface_index
UINT
NX_DHCPV6_STRUCT::nx_dhcpv6_thread
TX_THREAD
NX_DHCPV6_STRUCT::nx_dhcpv6_events
TX_EVENT_FLAGS_GROUP
NX_DHCPV6_STRUCT::nx_dhcpv6_client_mutex
TX_MUTEX
NX_DHCPV6_STRUCT::nx_dhcpv6_IP_lifetime_timer
TX_TIMER
NX_DHCPV6_STRUCT::nx_dhcpv6_session_timer
TX_TIMER
NX_DHCPV6_STRUCT::nx_dhcpv6_ip_ptr
NX_IP
*
NX_DHCPV6_STRUCT::nx_dhcpv6_pool_ptr
NX_PACKET_POOL
*
NX_DHCPV6_STRUCT::nx_dhcpv6_socket
NX_UDP_SOCKET
NX_DHCPV6_STRUCT::nx_dhcpv6_started
UCHAR
NX_DHCPV6_STRUCT::nx_dhcpv6_state
UCHAR
NX_DHCPV6_STRUCT::nx_status_code
USHORT
NX_DHCPV6_STRUCT::nx_dhcpv6_sleep_flag
UINT
NX_DHCPV6_STRUCT::nx_dhcpv6_message_hdr
NX_DHCPV6_MESSAGE_HDR
NX_DHCPV6_STRUCT::nx_dhcpv6_client_duid
NX_DHCPV6_DUID
NX_DHCPV6_STRUCT::nx_dhcpv6_server_duid
NX_DHCPV6_DUID
NX_DHCPV6_STRUCT::nx_dhcpv6_elapsed_time
NX_DHCPV6_ELAPSED_TIME
NX_DHCPV6_STRUCT::nx_dhcpv6_iana
NX_DHCPV6_IA_NA
NX_DHCPV6_STRUCT::nx_dhcpv6_ia
NX_DHCPV6_IA_ADDRESS
[
NX_DHCPV6_MAX_IA_ADDRESS
]
NX_DHCPV6_STRUCT::nx_dhcpv6_preference
NX_DHCPV6_PREFERENCE
NX_DHCPV6_STRUCT::nx_dhcpv6_option_request
NX_DHCPV6_OPTIONREQUEST
NX_DHCPV6_STRUCT::nx_dhcpv6_client_FQDN
NX_DHCPV6_CLIENT_FQDN
NX_DHCPV6_STRUCT::nx_dhcpv6_IP_lifetime_time_accrued
ULONG
NX_DHCPV6_STRUCT::nx_status_message
UCHAR
[
NX_DHCPV6_MAX_MESSAGE_SIZE
]
NX_DHCPV6_STRUCT::nx_dhcpv6_server_address
NXD_ADDRESS
NX_DHCPV6_STRUCT::nx_dhcpv6_DNS_name_server_address
NXD_ADDRESS
[
NX_DHCPV6_NUM_DNS_SERVERS
]
NX_DHCPV6_STRUCT::nx_dhcpv6_time_server_address
NXD_ADDRESS
[
NX_DHCPV6_NUM_TIME_SERVERS
]
NX_DHCPV6_STRUCT::nx_dhcpv6_client_destination_address
NXD_ADDRESS
NX_DHCPV6_STRUCT::nx_dhcpv6_domain_name
UCHAR
[
NX_DHCPV6_DOMAIN_NAME_BUFFER_SIZE
]
NX_DHCPV6_STRUCT::nx_dhcpv6_time_zone
UCHAR
[
NX_DHCPV6_TIME_ZONE_BUFFER_SIZE
]
NX_DHCPV6_STRUCT::nx_dhcpv6_solicitations_sent
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_solicitation_responses
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_requests_sent
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_request_responses
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_renews_sent
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_renew_responses
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_rebinds_sent
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_rebind_responses
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_releases_sent
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_release_responses
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_confirms_sent
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_confirm_responses
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_declines_sent
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_decline_responses
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_inform_req_sent
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_inform_req_responses
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_transmission_timeout
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_retransmission_count
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_init_retransmission_timeout
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_max_retransmission_count
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_max_retransmission_timeout
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_max_retransmission_duration
ULONG
NX_DHCPV6_STRUCT::nx_dhcpv6_request_solicit_mode
UINT
NX_DHCPV6_STRUCT::nx_dhcpv6_reply_option_flags
UINT
NX_DHCPV6_STRUCT::nx_dhcpv6_reply_option_current_pref_value
USHORT
NX_DHCPV6_STRUCT::nx_dhcpv6_received_message_type
UCHAR
NX_DHCPV6_STRUCT::nx_dhcpv6_reserved
UCHAR
NX_DHCPV6_STRUCT::nx_dhcpv6_state_change_callback
VOID
(
*
)
(
struct
NX_DHCPV6_STRUCT
*
dhcpv6_ptr
,
UINT
old_state
,
UINT
new_state
)
NX_DHCPV6_STRUCT::nx_dhcpv6_server_error_handler
VOID
(
*
)
(
struct
NX_DHCPV6_STRUCT
*
dhcpv6_ptr
,
UINT
op_code
,
UINT
status_code
,
UINT
message_type
)
Related Functions
Found 98 other functions taking a
NX_DHCPV6_STRUCT
argument:
Function
_nx_dhcpv6_create_client_iana()
_nxe_dhcpv6_add_client_ia()
_nx_dhcpv6_add_client_ia()
_nxe_dhcpv6_client_set_interface()
_nx_dhcpv6_client_set_interface()
_nxe_dhcpv6_client_set_destination_address()
_nx_dhcpv6_client_set_destination_address()
_nxe_dhcpv6_set_time_accrued()
_nx_dhcpv6_set_time_accrued()
_nxe_dhcpv6_get_client_duid_time_id()
_nx_dhcpv6_get_client_duid_time_id()
_nxe_dhcpv6_get_IP_address()
_nx_dhcpv6_get_IP_address()
_nxe_dhcpv6_client_create()
_nx_dhcpv6_client_create()
_nxe_dhcpv6_client_delete()
_nx_dhcpv6_client_delete()
_nxe_dhcpv6_create_client_duid()
_nx_dhcpv6_create_client_duid()
_nxe_dhcpv6_create_client_iana()
_nx_dhcpv6_update_retransmit_info()
_nx_dhcpv6_register_IP_address()
_nx_dhcpv6_remove_assigned_address()
_nxe_dhcpv6_get_lease_time_data()
_nx_dhcpv6_get_lease_time_data()
_nxe_dhcpv6_get_other_option_data()
_nx_dhcpv6_get_other_option_data()
_nxe_dhcpv6_get_DNS_server_address()
_nx_dhcpv6_get_DNS_server_address()
_nxe_dhcpv6_get_time_server_address()
_nx_dhcpv6_get_time_server_address()
_nxe_dhcpv6_get_time_accrued()
_nx_dhcpv6_get_time_accrued()
_nxe_dhcpv6_get_iana_lease_time()
_nx_dhcpv6_get_iana_lease_time()
_nxe_dhcpv6_get_valid_ip_address_count()
_nx_dhcpv6_get_valid_ip_address_count()
_nxe_dhcpv6_get_valid_ip_address_lease_time()
_nx_dhcpv6_get_valid_ip_address_lease_time()
_nxe_dhcpv6_reinitialize()
_nx_dhcpv6_reinitialize()
_nxe_dhcpv6_request_solicit()
_nx_dhcpv6_request_solicit()
_nxe_dhcpv6_request_solicit_rapid()
_nx_dhcpv6_request_solicit_rapid()
_nxe_dhcpv6_request_confirm()
_nx_dhcpv6_request_confirm()
_nxe_dhcpv6_request_release()
_nx_dhcpv6_request_release()
_nxe_dhcpv6_request_inform_request()
_nx_dhcpv6_request_inform_request()
_nxe_dhcpv6_request_option_DNS_server()
_nx_dhcpv6_request_option_DNS_server()
_nxe_dhcpv6_request_option_domain_name()
_nx_dhcpv6_request_option_domain_name()
_nxe_dhcpv6_request_option_time_server()
_nx_dhcpv6_request_option_time_server()
_nxe_dhcpv6_request_option_timezone()
_nx_dhcpv6_request_option_timezone()
_nxe_dhcpv6_request_option_FQDN()
_nx_dhcpv6_request_option_FQDN()
_nxe_dhcpv6_start()
_nx_dhcpv6_start()
_nxe_dhcpv6_stop()
_nx_dhcpv6_stop()
_nxe_dhcpv6_suspend()
_nx_dhcpv6_suspend()
_nxe_dhcpv6_resume()
_nx_dhcpv6_resume()
_nx_dhcpv6_process()
_nx_dhcpv6_request()
_nx_dhcpv6_extract_packet_information()
_nx_dhcpv6_flush_queue_packets()
_nx_dhcpv6_process_client_duid()
_nx_dhcpv6_process_DNS_server()
_nx_dhcpv6_process_domain_name()
_nx_dhcpv6_process_ia()
_nx_dhcpv6_process_iana()
_nx_dhcpv6_process_preference()
_nx_dhcpv6_process_server_duid()
_nx_dhcpv6_process_status()
_nx_dhcpv6_process_time_zone()
_nx_dhcpv6_process_time_server()
_nx_dhcpv6_request_renew()
_nx_dhcpv6_request_rebind()
_nx_dhcpv6_request_decline()
_nx_dhcpv6_send_request()
_nx_dhcpv6_add_client_duid()
_nx_dhcpv6_add_elapsed_time()
_nx_dhcpv6_add_option_request()
_nx_dhcpv6_add_ia_address()
_nx_dhcpv6_add_iana()
_nx_dhcpv6_add_server_duid()
_nx_dhcpv6_add_client_FQDN()
_nx_dhcpv6_waiting_on_reply()
_nx_dhcpv6_packet_process()
_nx_dhcpv6_scan_packet_options()
_nx_dhcpv6_preprocess_packet_information()
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out