summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-29 16:46:46 +0200
committerAndreas Baumann <abaumann@yahoo.com>2009-03-29 16:46:46 +0200
commit0b6f512e8e37935481de1d11b90c739070cb2565 (patch)
treea7499b355003f3f6d081fe6d7cc1132bc0fe96f7 /docs
parentcb1119666a3a4273fa53743837b2e13f6730bc10 (diff)
downloadwolfbones-0b6f512e8e37935481de1d11b90c739070cb2565.tar.gz
wolfbones-0b6f512e8e37935481de1d11b90c739070cb2565.tar.bz2
added stub implementation of getaddrinfo on Cygwin
Diffstat (limited to 'docs')
-rw-r--r--docs/port/README.networking6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/port/README.networking b/docs/port/README.networking
new file mode 100644
index 0000000..6532a58
--- /dev/null
+++ b/docs/port/README.networking
@@ -0,0 +1,6 @@
+- use POSIX getaddrinfo/getnameinfo as they provide a good top-level interface which
+ is quite portable (even on Windows)
+
+Good code examples:
+- UNPV12e of W. Richard Stevens (Unix Network Programming), the must-read
+- postgresql has a good getaddrinfo replacement for Windows and Cygwin