// -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- /* Copyright (C) 2010 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 #include #include #include _DEFS(giomm,gio) _PINCLUDE(giomm/private/iostream_p.h) namespace Gio { /** * A socket connection * * @see IOStream, SocketClient, SocketListener * * SocketConnection is a IOStream for a connected socket. They * can be created either by SocketClient when connecting to a host, * or by SocketListener when accepting a new client. * * The type of the SocketConnection object returned from these calls * depends on the type of the underlying socket that is in use. For * instance, for a TCP/IP connection it will be a TcpConnection. * * Chosing what type of object to construct is done with the socket * connection factory, and it is possible for 3rd parties to register * custom socket connection types for specific combination of socket * family/type/protocol using g_socket_connection_factory_register_type(). * * @newin{2,24} * @ingroup NetworkIO */ class SocketConnection : public Gio::IOStream { _CLASS_GOBJECT(SocketConnection, GSocketConnection, G_SOCKET_CONNECTION, Gio::IOStream, GIOStream) public: _WRAP_METHOD(Glib::RefPtr get_socket(), g_socket_connection_get_socket) _WRAP_METHOD(Glib::RefPtr get_socket() const, g_socket_connection_get_socket, constversion) _WRAP_METHOD(Glib::RefPtr get_local_address(), g_socket_connection_get_local_address, errthrow) _WRAP_METHOD(Glib::RefPtr get_local_address() const, g_socket_connection_get_local_address, constversion, errthrow) _WRAP_METHOD(Glib::RefPtr get_remote_address(), g_socket_connection_get_remote_address, errthrow) _WRAP_METHOD(Glib::RefPtr get_remote_address() const, g_socket_connection_get_remote_address, constversion, errthrow) // Not sure that registering new GTypes with the factory is useful for the C++ binding //_WRAP_METHOD(void factory_register_type(GType g_type, GSocketFamily family, GSocketType type, gint protocol); //_WRAP_METHOD(GType factory_lookup_type(GSocketFamily family, GSocketType type, gint protocol_id); _WRAP_METHOD(static Glib::RefPtr create(const Glib::RefPtr& socket), g_socket_connection_factory_create_connection) _WRAP_PROPERTY("socket", Glib::RefPtr) }; } // namespace Gio