1
10
13
14
20
21
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
92
93
94
101
102
103
104
105
106
107
108
109
110
111
112
113
120
121
...
...
...
#define NX_SECURE_SOURCE_CODE
#include "nx_secure_dtls.h"
#include "nx_ipv6.h"
...
...
UINT _nx_secure_dtls_client_session_start(NX_SECURE_DTLS_SESSION *dtls_session, NX_UDP_SOCKET *udp_socket, NXD_ADDRESS *ip_address, UINT port, UINT wait_option)
{
#ifdef NX_SECURE_ENABLE_DTLS
UINT status;
NXD_ADDRESS *remote_ip;
remote_ip = &(dtls_session->nx_secure_dtls_remote_ip_address);
remote_ip -> nxd_ip_version = ip_address -> nxd_ip_version;
#ifndef NX_DISABLE_IPV4
if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4)
{
remote_ip -> nxd_ip_address.v4 = ip_address -> nxd_ip_address.v4;
}if (ip_address -> nxd_ip_version == NX_IP_VERSION_V4) { ... }
/* ... */ #endif
#ifdef FEATURE_NX_IPV6
if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6)
{
COPY_IPV6_ADDRESS(ip_address -> nxd_ip_address.v6,
remote_ip -> nxd_ip_address.v6);
}if (ip_address -> nxd_ip_version == NX_IP_VERSION_V6) { ... }
/* ... */ #endif
dtls_session->nx_secure_dtls_remote_port = port;
dtls_session -> nx_secure_dtls_session_in_use = NX_TRUE;
status = _nx_secure_dtls_session_start(dtls_session, udp_socket, NX_TRUE, wait_option);
return(status);/* ... */
#else
NX_PARAMETER_NOT_USED(dtls_session);
NX_PARAMETER_NOT_USED(udp_socket);
NX_PARAMETER_NOT_USED(wait_option);
NX_PARAMETER_NOT_USED(ip_address);
NX_PARAMETER_NOT_USED(port);
return(NX_NOT_SUPPORTED);/* ... */
#endif
}{ ... }