From 8395f27eb938731338aff3cbbe0c8c4eab53be77 Mon Sep 17 00:00:00 2001 From: Stefan Kieszkowski <85728496+stefankiesz@users.noreply.github.com> Date: Fri, 15 Nov 2024 10:35:01 -0800 Subject: [PATCH] Address comments --- src/source/Ice/IceAgent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/source/Ice/IceAgent.h b/src/source/Ice/IceAgent.h index 948d372a42..8ad364192d 100644 --- a/src/source/Ice/IceAgent.h +++ b/src/source/Ice/IceAgent.h @@ -80,7 +80,7 @@ typedef struct __IceAgent* PIceAgent; * Internal structure tracking ICE server parameters for diagnostics and metrics/stats */ typedef struct { - CHAR url[MAX_STATS_STRING_LENGTH + 1]; //!< STUN/TURN server URL + CHAR url[MAX_ICE_CONFIG_URI_LEN + 1]; //!< STUN/TURN server URL CHAR protocol[MAX_PROTOCOL_LENGTH + 1]; //!< Valid values: UDP, TCP INT32 port; //!< Port number used by client UINT64 totalRequestsSent; //!< Total amount of requests that have been sent to the server @@ -89,7 +89,7 @@ typedef struct { } RtcIceServerDiagnostics, *PRtcIceServerDiagnostics; typedef struct { - DOMString url; //!< For local candidates this is the URL of the ICE server from which the candidate was obtained + CHAR url[MAX_ICE_CONFIG_URI_LEN + 1]; //!< For local candidates this is the URL of the ICE server from which the candidate was obtained CHAR address[KVS_IP_ADDRESS_STRING_BUFFER_LEN]; //!< IPv4 or IPv6 address of the candidate CHAR protocol[MAX_PROTOCOL_LENGTH + 1]; //!< Valid values: UDP, TCP CHAR relayProtocol[MAX_PROTOCOL_LENGTH + 1]; //!< Protocol used by endpoint to communicate with TURN server.