]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sckaddr.h
added wx/defs.h include to correct compilation issues under Mac OS X
[wxWidgets.git] / include / wx / sckaddr.h
index 74f0c57a35d2a49120f44f06a0b94c9341ffb56d..39e518879269a9f6f7dacac6c60e7b0dce40560e 100644 (file)
@@ -56,13 +56,11 @@ public:
   bool Service(const wxString& name);
   bool Service(unsigned short port);
   bool LocalHost();
+  bool AnyAddress();
 
   wxString Hostname();
   unsigned short Service();
 
-  void Build(struct sockaddr*& addr, size_t& len);
-  void Disassemble(struct sockaddr *addr, size_t len);
-
   inline int Type() { return wxSockAddress::IPV4; }
 };
 
@@ -88,9 +86,11 @@ public:
 };
 #endif
 
-#ifdef __UNIX__
+#if defined(__UNIX__) && !defined(__WXMAC__)
 #include <sys/socket.h>
-#include <sys/un.h>
+#ifndef __VMS__
+# include <sys/un.h>
+#endif
 
 class WXDLLEXPORT wxUNIXaddress : public wxSockAddress {
   DECLARE_DYNAMIC_CLASS(wxUNIXaddress)