diff options
| author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-05-06 02:48:18 +0200 | 
|---|---|---|
| committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-05-06 02:52:01 +0200 | 
| commit | 3f078c99f6be160641b1c4782d2653b9d76a5ca8 (patch) | |
| tree | 5098e5559f47b39210f0a7687ca3dc585deb2210 /modules/mbedtls | |
| parent | 758bccf364729474f8ffbcf15a0bb6e9bad02d9c (diff) | |
Rename `IP_Unix`, `IP_Address` and `TCP_Server` to remove underscores
Diffstat (limited to 'modules/mbedtls')
| -rw-r--r-- | modules/mbedtls/packet_peer_mbed_dtls.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mbedtls/packet_peer_mbed_dtls.cpp b/modules/mbedtls/packet_peer_mbed_dtls.cpp index 342ded6ea1..d77d946a77 100644 --- a/modules/mbedtls/packet_peer_mbed_dtls.cpp +++ b/modules/mbedtls/packet_peer_mbed_dtls.cpp @@ -87,7 +87,7 @@ void PacketPeerMbedDTLS::_cleanup() {  int PacketPeerMbedDTLS::_set_cookie() {  	// Setup DTLS session cookie for this client  	uint8_t client_id[18]; -	IP_Address addr = base->get_packet_address(); +	IPAddress addr = base->get_packet_address();  	uint16_t port = base->get_packet_port();  	memcpy(client_id, addr.get_ipv6(), 16);  	memcpy(&client_id[16], (uint8_t *)&port, 2);  |