// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- /* Copyright (C) 2007 The giomm 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 #include #include #include #include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/object_p.h) namespace Gio { /** Abstract base class representing endpoints for socket communication * * @newin{2,24} * @ingroup NetworkIO */ class SocketAddress : public Glib::Object, public SocketConnectable { _CLASS_GOBJECT(SocketAddress, GSocketAddress, G_SOCKET_ADDRESS, Glib::Object, GObject) _IMPLEMENTS_INTERFACE(SocketConnectable) _WRAP_CTOR(SocketAddress(gpointer native, gsize len), g_socket_address_new_from_native) public: _WRAP_CREATE(gpointer native, gsize len) _WRAP_METHOD(SocketFamily get_family() const, g_socket_address_get_family) _WRAP_METHOD(bool to_native(gpointer dest, gsize destlen), g_socket_address_to_native, errthrow) _WRAP_METHOD(gssize get_native_size() const, g_socket_address_get_native_size) _WRAP_PROPERTY("family", Glib::RefPtr) }; } // namespace Gio