summaryrefslogtreecommitdiff
path: root/gio/src/proxyaddress.hg
blob: 4740454fe48949bf4bed57118646c114b39b11f9 (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
// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*-

/* Copyright (C) 2009 The glibmm Development Team
 *
 * 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 <giomm/inetsocketaddress.h>

_DEFS(giomm,gio)
_PINCLUDE(giomm/private/inetsocketaddress_p.h)

namespace Gio
{

/** ProxyAddress - An internet address with proxy information.
 * Support for proxied InetSocketAddress.
 *
 * @newin{2,28}
 */
class ProxyAddress
: public InetSocketAddress
{
  _CLASS_GOBJECT(ProxyAddress, GProxyAddress, G_PROXY_ADDRESS, InetSocketAddress, GInetSocketAddress)

protected:
  _WRAP_CTOR(ProxyAddress(const Glib::RefPtr<InetAddress>& address,
    guint16 port,
    const Glib::ustring& protocol,
    const Glib::ustring& destination_hostname,
    guint16 destination_port,
    const Glib::ustring& username = Glib::ustring(),
    const Glib::ustring& password = Glib::ustring()), g_proxy_address_new)

public:
  _WRAP_CREATE(const Glib::RefPtr<InetAddress>& address,
    guint16 port,
    const Glib::ustring& protocol,
    const Glib::ustring& destination_hostname,
    guint16 destination_port,
    const Glib::ustring& username = Glib::ustring(),
    const Glib::ustring& password = Glib::ustring())

  _WRAP_METHOD(Glib::ustring get_protocol() const, g_proxy_address_get_protocol)
  _WRAP_METHOD(Glib::ustring get_destination_hostname() const, g_proxy_address_get_destination_hostname)
  _WRAP_METHOD(guint16 get_destination_port() const, g_proxy_address_get_destination_port)

  _WRAP_METHOD(Glib::ustring get_username() const, g_proxy_address_get_username)
  _WRAP_METHOD(Glib::ustring get_password() const, g_proxy_address_get_password)
  
  _WRAP_PROPERTY("protocol", Glib::ustring)
  _WRAP_PROPERTY("destination_hostname", Glib::ustring)
  _WRAP_PROPERTY("destination_port", Glib::ustring)
  _WRAP_PROPERTY("username", Glib::ustring)
  _WRAP_PROPERTY("password", Glib::ustring)
};

} // namespace Gio