summaryrefslogtreecommitdiff
path: root/gio/src/inetaddress.hg
blob: 27702b3ed65e712c302420f9bef32e7d8288f966 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-

/* Copyright (C) 2009 jonathon jongsma
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <glibmm/object.h>
#include <giomm/enums.h>

_DEFS(giomm,gio)
_PINCLUDE(glibmm/private/object_p.h)

namespace Gio
{

/** An IPv4/IPv6 address
 *
 * InetAddress represents an IPv4 or IPv6 internet address. Use
 * Resolver::lookup_by_name() or Resolver::lookup_by_name_async() to look up
 * the InetAddress for a hostname. Use Resolver::lookup_by_address() or
 * Resolver::lookup_by_address_async() to look up the hostname for a
 * InetAddress.
 *
 * To actually connect to a remote host, you will need a InetSocketAddress
 * (which includes a InetAddress as well as a port number).
 *
 * @since{2,22}
 */
class InetAddress
: public Glib::Object
{
  _CLASS_GOBJECT(InetAddress, GInetAddress, G_INET_ADDRESS, Glib::Object, GObject)

protected:
 _WRAP_CTOR(InetAddress(const Glib::ustring& string), g_inet_address_new_from_string)
 _WRAP_CTOR(InetAddress(const guint8 *bytes, SocketFamily family), g_inet_address_new_from_bytes)
 _WRAP_CTOR(InetAddress(SocketFamily family), g_inet_address_new_any)
 // TODO: new_loopback has the same signature as new_any

public:
  _WRAP_CREATE(const Glib::ustring& string)
  _WRAP_CREATE(const guint8 *bytes, SocketFamily family)
  _WRAP_CREATE(SocketFamily family)
  // TODO: create for new_loopback

  _WRAP_METHOD(const guint8* to_bytes() const, g_inet_address_to_bytes)
  _WRAP_METHOD(Glib::ustring to_string() const, g_inet_address_to_string)
  _WRAP_METHOD(SocketFamily get_family() const, g_inet_address_get_family)
  _WRAP_METHOD(bool get_is_any() const, g_inet_address_get_is_any)
  _WRAP_METHOD(bool get_is_link_local() const, g_inet_address_get_is_link_local)
  _WRAP_METHOD(bool get_is_loopback() const, g_inet_address_get_is_loopback)
  _WRAP_METHOD(bool get_is_mc_global() const, g_inet_address_get_is_mc_global)
  _WRAP_METHOD(bool get_is_mc_link_local() const, g_inet_address_get_is_mc_link_local)
  _WRAP_METHOD(bool get_is_mc_node_local() const, g_inet_address_get_is_mc_node_local)
  _WRAP_METHOD(bool get_is_mc_org_local() const, g_inet_address_get_is_mc_org_local)
  _WRAP_METHOD(bool get_is_mc_site_local() const, g_inet_address_get_is_mc_site_local)
  _WRAP_METHOD(bool get_is_multicast() const, g_inet_address_get_is_multicast)
  _WRAP_METHOD(bool get_is_site_local() const, g_inet_address_get_is_site_local)
  _WRAP_METHOD(gsize get_native_size() const, g_inet_address_get_native_size)
};

} // namespace Gio