Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed May 3, 2024
1 parent 97c3dc6 commit e0bf553
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cpp/include/Ice/ClientAuthenticationOptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ namespace Ice::SSL
* server's certificate chain is validated against these certificates; otherwise, the system's default root
* certificates are used.
*
* @remarks The trusted root certificates are used by both the default validation callback, and by custom
* validation callback set in clientCertificateValidationCallback.
* @remarks The trusted root certificates are only used by the default validation callback; they are ignored by
* custom validation callbacks set with serverCertificateValidationCallback.
*
* Example of setting trustedRootCertificates:
* ```cpp
Expand Down Expand Up @@ -209,7 +209,7 @@ namespace Ice::SSL
* certificates are used.
*
* @remarks The trusted root certificates are used by both the default validation callback, and by custom
* validation callback set in clientCertificateValidationCallback.
* validation callback set in serverCertificateValidationCallback.
*
* This is equivalent to calling
* [SecTrustSetAnchorCertificates](https://developer.apple.com/documentation/security/1396098-sectrustsetanchorcertificates?language=objc)
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/Ice/Network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2170,7 +2170,7 @@ IceInternal::doFinishConnectAsync(SOCKET fd, AsyncInfo& info)
#endif

bool
IceInternal::misIpAddress(const string& name)
IceInternal::isIpAddress(const string& name)
{
in_addr addr;
in6_addr addr6;
Expand Down

0 comments on commit e0bf553

Please sign in to comment.