1998-09-06 18:28:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: sckaddr.h
|
|
|
|
// Purpose: Network address classes
|
|
|
|
// Author: Guilhem Lavaux
|
|
|
|
// Modified by:
|
|
|
|
// Created: 26/04/1997
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1997, 1998 Guilhem Lavaux
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-06 18:28:00 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
1999-06-22 08:36:29 +00:00
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
#ifndef _WX_NETWORK_ADDRESS_H
|
|
|
|
#define _WX_NETWORK_ADDRESS_H
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2002-08-31 11:29:13 +00:00
|
|
|
#pragma interface "sckaddr.h"
|
1999-06-22 08:36:29 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_SOCKETS
|
|
|
|
|
|
|
|
#include "wx/string.h"
|
1999-07-29 05:27:19 +00:00
|
|
|
#include "wx/gsocket.h"
|
1999-07-22 17:51:54 +00:00
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2003-07-27 22:41:06 +00:00
|
|
|
class WXDLLIMPEXP_NET wxSockAddress : public wxObject {
|
1998-09-06 18:28:00 +00:00
|
|
|
DECLARE_ABSTRACT_CLASS(wxSockAddress)
|
|
|
|
public:
|
|
|
|
typedef enum { IPV4=1, IPV6=2, UNIX=3 } Addr;
|
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
wxSockAddress();
|
2001-11-22 10:38:02 +00:00
|
|
|
wxSockAddress(const wxSockAddress& other);
|
1999-07-22 17:51:54 +00:00
|
|
|
virtual ~wxSockAddress();
|
|
|
|
|
2001-11-22 10:38:02 +00:00
|
|
|
wxSockAddress& operator=(const wxSockAddress& other);
|
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
virtual void Clear();
|
|
|
|
virtual int Type() = 0;
|
1998-09-06 18:28:00 +00:00
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
GAddress *GetAddress() const { return m_address; }
|
|
|
|
void SetAddress(GAddress *address);
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2001-11-21 21:44:52 +00:00
|
|
|
// we need to be able to create copies of the addresses polymorphically (i.e.
|
2002-02-24 13:51:43 +00:00
|
|
|
// without knowing the exact address class)
|
2001-11-21 21:44:52 +00:00
|
|
|
virtual wxSockAddress *Clone() const = 0;
|
1998-09-06 18:28:00 +00:00
|
|
|
|
1999-07-22 17:51:54 +00:00
|
|
|
protected:
|
|
|
|
GAddress *m_address;
|
2002-02-24 13:51:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void Init();
|
1998-09-06 18:28:00 +00:00
|
|
|
};
|
|
|
|
|
2004-01-11 15:50:10 +00:00
|
|
|
// Interface to an IP address (either IPV4 or IPV6)
|
|
|
|
class WXDLLIMPEXP_NET wxIPaddress : public wxSockAddress {
|
|
|
|
DECLARE_ABSTRACT_CLASS(wxIPaddress)
|
|
|
|
public:
|
|
|
|
wxIPaddress();
|
|
|
|
wxIPaddress(const wxIPaddress& other);
|
|
|
|
virtual ~wxIPaddress();
|
|
|
|
|
|
|
|
virtual bool Hostname(const wxString& name) = 0;
|
|
|
|
virtual bool Service(const wxString& name) = 0;
|
|
|
|
virtual bool Service(unsigned short port) = 0;
|
|
|
|
|
|
|
|
virtual bool LocalHost() = 0;
|
|
|
|
virtual bool IsLocalHost() const = 0;
|
|
|
|
|
|
|
|
virtual bool AnyAddress() = 0;
|
|
|
|
|
|
|
|
virtual wxString IPAddress() const = 0;
|
|
|
|
|
|
|
|
virtual wxString Hostname() const = 0;
|
|
|
|
virtual unsigned short Service() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_NET wxIPV4address : public wxIPaddress {
|
1998-09-06 18:28:00 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxIPV4address)
|
|
|
|
public:
|
|
|
|
wxIPV4address();
|
2001-11-22 10:38:02 +00:00
|
|
|
wxIPV4address(const wxIPV4address& other);
|
1998-09-06 18:28:00 +00:00
|
|
|
virtual ~wxIPV4address();
|
|
|
|
|
2004-01-11 15:50:10 +00:00
|
|
|
// IPV4 name formats
|
|
|
|
//
|
|
|
|
// hostname
|
|
|
|
// dot format a.b.c.d
|
|
|
|
virtual bool Hostname(const wxString& name);
|
1999-07-22 17:51:54 +00:00
|
|
|
bool Hostname(unsigned long addr);
|
2004-01-11 15:50:10 +00:00
|
|
|
virtual bool Service(const wxString& name);
|
|
|
|
virtual bool Service(unsigned short port);
|
|
|
|
|
|
|
|
// localhost (127.0.0.1)
|
|
|
|
virtual bool LocalHost();
|
|
|
|
virtual bool IsLocalHost() const;
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2004-01-11 15:50:10 +00:00
|
|
|
// any (0.0.0.0)
|
|
|
|
virtual bool AnyAddress();
|
|
|
|
|
|
|
|
virtual wxString Hostname() const;
|
2002-02-21 00:01:32 +00:00
|
|
|
wxString OrigHostname() { return m_origHostname; }
|
2004-01-11 15:50:10 +00:00
|
|
|
virtual unsigned short Service() const;
|
|
|
|
|
|
|
|
// a.b.c.d
|
|
|
|
virtual wxString IPAddress() const;
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2001-11-21 21:44:52 +00:00
|
|
|
virtual int Type() { return wxSockAddress::IPV4; }
|
2002-02-21 00:01:32 +00:00
|
|
|
virtual wxSockAddress *Clone() const;
|
2004-09-22 14:38:52 +00:00
|
|
|
|
2004-01-11 14:22:36 +00:00
|
|
|
bool operator==(wxIPV4address& addr);
|
2002-02-21 00:01:32 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxString m_origHostname;
|
1998-09-06 18:28:00 +00:00
|
|
|
};
|
|
|
|
|
2004-01-11 15:50:10 +00:00
|
|
|
#if wxUSE_IPV6
|
|
|
|
|
|
|
|
// Experimental Only:
|
|
|
|
//
|
|
|
|
// IPV6 has not yet been implemented in socket layer
|
|
|
|
class WXDLLIMPEXP_NET wxIPV6address : public wxIPaddress {
|
1998-09-06 18:28:00 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxIPV6address)
|
|
|
|
private:
|
|
|
|
struct sockaddr_in6 *m_addr;
|
|
|
|
public:
|
|
|
|
wxIPV6address();
|
2001-11-22 10:38:02 +00:00
|
|
|
wxIPV6address(const wxIPV6address& other);
|
|
|
|
virtual ~wxIPV6address();
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2004-01-11 15:50:10 +00:00
|
|
|
// IPV6 name formats
|
|
|
|
//
|
|
|
|
// hostname
|
2004-09-22 14:38:52 +00:00
|
|
|
// 3ffe:ffff:0100:f101:0210:a4ff:fee3:9566
|
2004-01-11 15:50:10 +00:00
|
|
|
// compact (base85) Itu&-ZQ82s>J%s99FJXT
|
|
|
|
// compressed format ::1
|
|
|
|
// ipv4 mapped ::ffff:1.2.3.4
|
|
|
|
virtual bool Hostname(const wxString& name);
|
|
|
|
|
1998-09-06 18:28:00 +00:00
|
|
|
bool Hostname(unsigned char addr[16]);
|
2004-01-11 15:50:10 +00:00
|
|
|
virtual bool Service(const wxString& name);
|
|
|
|
virtual bool Service(unsigned short port);
|
|
|
|
|
|
|
|
// localhost (0000:0000:0000:0000:0000:0000:0000:0001 (::1))
|
|
|
|
virtual bool LocalHost();
|
|
|
|
virtual bool IsLocalHost() const;
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2004-01-11 15:50:10 +00:00
|
|
|
// any (0000:0000:0000:0000:0000:0000:0000:0000 (::))
|
|
|
|
virtual bool AnyAddress();
|
|
|
|
|
2004-09-22 14:38:52 +00:00
|
|
|
// 3ffe:ffff:0100:f101:0210:a4ff:fee3:9566
|
2004-01-11 15:50:10 +00:00
|
|
|
virtual wxString IPAddress() const;
|
|
|
|
|
|
|
|
virtual wxString Hostname() const;
|
|
|
|
virtual unsigned short Service() const;
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2001-11-21 21:44:52 +00:00
|
|
|
virtual int Type() { return wxSockAddress::IPV6; }
|
|
|
|
virtual wxSockAddress *Clone() const { return new wxIPV6address(*this); }
|
1998-09-06 18:28:00 +00:00
|
|
|
};
|
2004-01-11 15:50:10 +00:00
|
|
|
|
|
|
|
#endif // wxUSE_IPV6
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2003-01-07 13:49:08 +00:00
|
|
|
#if defined(__UNIX__) && !defined(__WINE__) && (!defined(__WXMAC__) || defined(__DARWIN__))
|
1999-08-16 12:18:40 +00:00
|
|
|
#include <sys/socket.h>
|
1999-11-12 11:27:07 +00:00
|
|
|
#ifndef __VMS__
|
|
|
|
# include <sys/un.h>
|
|
|
|
#endif
|
1998-09-06 18:28:00 +00:00
|
|
|
|
2003-07-27 22:41:06 +00:00
|
|
|
class WXDLLIMPEXP_NET wxUNIXaddress : public wxSockAddress {
|
1998-09-06 18:28:00 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxUNIXaddress)
|
|
|
|
private:
|
|
|
|
struct sockaddr_un *m_addr;
|
|
|
|
public:
|
|
|
|
wxUNIXaddress();
|
2001-11-22 10:38:02 +00:00
|
|
|
wxUNIXaddress(const wxUNIXaddress& other);
|
|
|
|
virtual ~wxUNIXaddress();
|
1998-09-06 18:28:00 +00:00
|
|
|
|
|
|
|
void Filename(const wxString& name);
|
|
|
|
wxString Filename();
|
|
|
|
|
2001-11-21 21:44:52 +00:00
|
|
|
virtual int Type() { return wxSockAddress::UNIX; }
|
|
|
|
virtual wxSockAddress *Clone() const { return new wxUNIXaddress(*this); }
|
1998-09-06 18:28:00 +00:00
|
|
|
};
|
|
|
|
#endif
|
1999-06-22 08:36:29 +00:00
|
|
|
// __UNIX__
|
1998-09-06 18:28:00 +00:00
|
|
|
|
|
|
|
#endif
|
1999-06-22 08:36:29 +00:00
|
|
|
// wxUSE_SOCKETS
|
1999-07-29 05:27:19 +00:00
|
|
|
|
1999-06-22 08:36:29 +00:00
|
|
|
#endif
|
|
|
|
// _WX_NETWORK_ADDRESS_H
|