summaryrefslogtreecommitdiff
path: root/docs/port
diff options
context:
space:
mode:
Diffstat (limited to 'docs/port')
-rw-r--r--docs/port/README.networking7
-rw-r--r--docs/port/TODOS10
2 files changed, 0 insertions, 17 deletions
diff --git a/docs/port/README.networking b/docs/port/README.networking
deleted file mode 100644
index c749209..0000000
--- a/docs/port/README.networking
+++ /dev/null
@@ -1,7 +0,0 @@
-- 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
-- some very helpful tips: www_kame_net_newsletter_19980604.txt
diff --git a/docs/port/TODOS b/docs/port/TODOS
deleted file mode 100644
index ffdb327..0000000
--- a/docs/port/TODOS
+++ /dev/null
@@ -1,10 +0,0 @@
-- the HAVE_XXX flags could produce a name clash with some autoconf'ed
- software/library we will be using in production code. Rename to
- WOLF_SYS_HAVE_XXX or similar
-- feedback to the c99 snprintf guy, errors like:
- - -1 instead of buffer size on boffer overflow
- - extern errno in mutli-threaded code
-- add a lot more tests
-- %zd and similar pointers: make format macros like PRIdPTR which
- get mapped to %ld. But what if snprintf could do a %zd and
- fprintf not?