aboutsummaryrefslogtreecommitdiff
path: root/src/core/platform.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-07-06 13:34:20 -0700
committerGarrett D'Amore <garrett@damore.org>2017-07-06 13:34:20 -0700
commit82c70435ec9be9c607de4fbd62d4de9ae7d7c081 (patch)
tree86b3edea0a1358395f417c689b7cb666fb77c890 /src/core/platform.h
parent8811317e2da3b5a21d6caab0cc0e12aad417edd6 (diff)
downloadnng-82c70435ec9be9c607de4fbd62d4de9ae7d7c081.tar.gz
nng-82c70435ec9be9c607de4fbd62d4de9ae7d7c081.tar.bz2
nng-82c70435ec9be9c607de4fbd62d4de9ae7d7c081.zip
Initial swag at asynchronous name resolution.
Diffstat (limited to 'src/core/platform.h')
-rw-r--r--src/core/platform.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/platform.h b/src/core/platform.h
index 971c6a5d..0dcab40a 100644
--- a/src/core/platform.h
+++ b/src/core/platform.h
@@ -242,6 +242,15 @@ extern void nni_plat_tcp_aio_send(nni_plat_tcpsock *, nni_aio *);
// full, or an error condition occurs.
extern void nni_plat_tcp_aio_recv(nni_plat_tcpsock *, nni_aio *);
+// nni_plat_tcp_resolv resolves a TCP name asynchronously. The family
+// should be one of NNG_AF_INET, NNG_AF_INET6, or NNG_AF_UNSPEC. The
+// first two constrain the name to those families, while the third will
+// return names of either family. The passive flag indicates that the
+// name will be used for bind(), otherwise the name will be used with
+// connect(). The host part may be NULL only if passive is true.
+extern void nni_plat_tcp_resolv(const char *, const char *, int, int,
+ nni_aio *);
+
//
// IPC (UNIX Domain Sockets & Named Pipes) Support.
//