aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-07-13 03:01:05 -0700
committerGarrett D'Amore <garrett@damore.org>2017-07-13 03:01:05 -0700
commit4735d7b69aaf0109b49a6a152b50099ad8400f96 (patch)
tree226a34bca67f908e0e70a1ecc858015b4538df06 /src/core
parent85593e678c35c13ed2d37f7f22aa41b0b8d70825 (diff)
downloadnng-4735d7b69aaf0109b49a6a152b50099ad8400f96.tar.gz
nng-4735d7b69aaf0109b49a6a152b50099ad8400f96.tar.bz2
nng-4735d7b69aaf0109b49a6a152b50099ad8400f96.zip
Windows implmentation of TCP is "working now".
This is only lightly tested, and I expect that there remain some race conditions. Endpoint logic in particular needs work.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/platform.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/platform.h b/src/core/platform.h
index b3fc7572..ed32c550 100644
--- a/src/core/platform.h
+++ b/src/core/platform.h
@@ -187,13 +187,6 @@ extern int nni_plat_init(int (*)(void));
// will be called until nni_platform_init is called.
extern void nni_plat_fini(void);
-// nni_plat_lookup_host looks up a hostname in DNS, or the local hosts
-// file, or whatever. If your platform lacks support for naming, it must
-// at least cope with converting IP addresses in string form. The final
-// flags may include NNI_FLAG_IPV4ONLY to prevent IPv6 names from being
-// returned on dual stack machines.
-extern int nni_plat_lookup_host(const char *, nni_sockaddr *, int);
-
//
// TCP Support.
//