Skip to content
Snippets Groups Projects
Commit 0fa0f384 authored by Nicolas Noble's avatar Nicolas Noble Committed by GitHub
Browse files

Merge pull request #8527 from nicolasnoble/revert-tsi-ntop

Reverting TSI's ntop change, to avoid dependency between TSI and gRPC.
parents 9ba10d8a e3df5a02
No related branches found
No related tags found
No related merge requests found
...@@ -31,9 +31,6 @@ ...@@ -31,9 +31,6 @@
* *
*/ */
#include "src/core/lib/iomgr/sockaddr.h"
#include "src/core/lib/iomgr/socket_utils.h"
#include "src/core/lib/tsi/ssl_transport_security.h" #include "src/core/lib/tsi/ssl_transport_security.h"
#include <grpc/support/port_platform.h> #include <grpc/support/port_platform.h>
...@@ -41,6 +38,15 @@ ...@@ -41,6 +38,15 @@
#include <limits.h> #include <limits.h>
#include <string.h> #include <string.h>
/* TODO(jboeuf): refactor inet_ntop into a portability header. */
/* Note: for whomever reads this and tries to refactor this, this
can't be in grpc, it has to be in gpr. */
#ifdef GPR_WINDOWS
#include <ws2tcpip.h>
#else
#include <arpa/inet.h>
#endif
#include <grpc/support/alloc.h> #include <grpc/support/alloc.h>
#include <grpc/support/log.h> #include <grpc/support/log.h>
#include <grpc/support/sync.h> #include <grpc/support/sync.h>
...@@ -349,8 +355,8 @@ static tsi_result add_subject_alt_names_properties_to_peer( ...@@ -349,8 +355,8 @@ static tsi_result add_subject_alt_names_properties_to_peer(
result = TSI_INTERNAL_ERROR; result = TSI_INTERNAL_ERROR;
break; break;
} }
const char *name = grpc_inet_ntop(af, subject_alt_name->d.iPAddress->data, const char *name = inet_ntop(af, subject_alt_name->d.iPAddress->data,
ntop_buf, INET6_ADDRSTRLEN); ntop_buf, INET6_ADDRSTRLEN);
if (name == NULL) { if (name == NULL) {
gpr_log(GPR_ERROR, "Could not get IP string from asn1 octet."); gpr_log(GPR_ERROR, "Could not get IP string from asn1 octet.");
result = TSI_INTERNAL_ERROR; result = TSI_INTERNAL_ERROR;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment