A GSocketConnectable for resolving SRV records. More...
#include <giomm/networkservice.h>
Public Member Functions | |
virtual | ~NetworkService () |
GNetworkService* | gobj () |
Provides access to the underlying C GObject. | |
const GNetworkService* | gobj () const |
Provides access to the underlying C GObject. | |
GNetworkService* | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. | |
Glib::ustring | get_service () const |
Gets srv's service name (eg, "ldap"). | |
Glib::ustring | get_protocol () const |
Gets srv's protocol name (eg, "tcp"). | |
Glib::ustring | get_domain () const |
Gets the domain that srv serves. | |
Glib::PropertyProxy_ReadOnly < Glib::ustring > | property_domain () const |
Network domain, eg, 'example.com'. | |
Glib::PropertyProxy_ReadOnly < Glib::ustring > | property_protocol () const |
Network protocol, eg 'tcp'. | |
Glib::PropertyProxy_ReadOnly < Glib::ustring > | property_service () const |
Service name, eg 'ldap'. | |
Static Public Member Functions | |
static Glib::RefPtr < NetworkService > | create (const Glib::ustring& service, const Glib::ustring& protocol, const Glib::ustring& domain) |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr< Gio::NetworkService > | wrap (GNetworkService* object, bool take_copy=false) |
A Glib::wrap() method for this object. |
A GSocketConnectable for resolving SRV records.
Like NetworkAddress does with hostnames, NetworkService provides an easy way to resolve a SRV record, and then attempt to connect to one of the hosts that implements that service, handling service priority/weighting, multiple IP addresses, and multiple address families.
See SrvTarget for more information about SRV records, and see SocketConnectable for and example of using the connectable interface.
virtual Gio::NetworkService::~NetworkService | ( | ) | [virtual] |
static Glib::RefPtr<NetworkService> Gio::NetworkService::create | ( | const Glib::ustring& | service, | |
const Glib::ustring& | protocol, | |||
const Glib::ustring& | domain | |||
) | [static] |
Glib::ustring Gio::NetworkService::get_domain | ( | ) | const |
Gets the domain that srv serves.
This might be either UTF-8 or ASCII-encoded, depending on what srv was created with.
Glib::ustring Gio::NetworkService::get_protocol | ( | ) | const |
Glib::ustring Gio::NetworkService::get_service | ( | ) | const |
const GNetworkService* Gio::NetworkService::gobj | ( | ) | const [inline] |
Provides access to the underlying C GObject.
Reimplemented from Gio::SocketConnectable.
GNetworkService* Gio::NetworkService::gobj | ( | ) | [inline] |
Provides access to the underlying C GObject.
Reimplemented from Gio::SocketConnectable.
GNetworkService* Gio::NetworkService::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
Glib::PropertyProxy_ReadOnly<Glib::ustring> Gio::NetworkService::property_domain | ( | ) | const |
Network domain, eg, 'example.com'.
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy_ReadOnly<Glib::ustring> Gio::NetworkService::property_protocol | ( | ) | const |
Network protocol, eg 'tcp'.
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::PropertyProxy_ReadOnly<Glib::ustring> Gio::NetworkService::property_service | ( | ) | const |
Service name, eg 'ldap'.
You rarely need to use properties because there are get_ and set_ methods for almost all of them.
Glib::RefPtr< Gio::NetworkService > wrap | ( | GNetworkService * | object, | |
bool | take_copy = false | |||
) | [related] |
A Glib::wrap() method for this object.
object | The C instance. | |
take_copy | False if the result should take ownership of the C instance. True if it should take a new copy or ref. |