Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankiesz committed Nov 15, 2024
1 parent a5e7829 commit 8395f27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/source/Ice/IceAgent.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit 8395f27

Please sign in to comment.