summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 19fd02b)
raw | patch | inline | side by side (parent: 19fd02b)
author | ishmal <ishmal@users.sourceforge.net> | |
Wed, 12 Apr 2006 14:38:20 +0000 (14:38 +0000) | ||
committer | ishmal <ishmal@users.sourceforge.net> | |
Wed, 12 Apr 2006 14:38:20 +0000 (14:38 +0000) |
src/dom/io/socket.cpp | patch | blob | history |
diff --git a/src/dom/io/socket.cpp b/src/dom/io/socket.cpp
index 220ecd004914c9ed1dcd5c7926730e12818954f7..555d0ce5fc76427ccb4cc49a8b53e51bb9666c1e 100644 (file)
--- a/src/dom/io/socket.cpp
+++ b/src/dom/io/socket.cpp
#ifdef __WIN32__
#include <windows.h>
+#else /* unix */
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netdb.h>
+#include <unistd.h>
+#include <sys/ioctl.h>
+
+#endif
+
+#ifdef HAVE_SSL
+#include <openssl/ssl.h>
+#include <openssl/err.h>
+#endif
#endif