A TCP SocketConnection. More...
Inherits Gio::SocketConnection.
Public Member Functions | |
virtual | ~TcpConnection () |
GTcpConnection* | gobj () |
Provides access to the underlying C GObject. | |
const GTcpConnection* | gobj () const |
Provides access to the underlying C GObject. | |
GTcpConnection* | gobj_copy () |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. | |
void | set_graceful_disconnect (bool graceful_disconnect) |
This enabled graceful disconnects on close. | |
bool | get_graceful_disconnect () const |
Checks if graceful disconnects are used. | |
Related Functions | |
(Note that these are not member functions.) | |
Glib::RefPtr< Gio::TcpConnection > | wrap (GTcpConnection* object, bool take_copy=false) |
A Glib::wrap() method for this object. |
A TCP SocketConnection.
This is the subclass of SocketConnection that is created for TCP/IP sockets.
virtual Gio::TcpConnection::~TcpConnection | ( | ) | [virtual] |
bool Gio::TcpConnection::get_graceful_disconnect | ( | ) | const |
Checks if graceful disconnects are used.
See g_tcp_connection_set_graceful_disconnect().
true
if graceful disconnect is used on close, false
otherwiseconst GTcpConnection* Gio::TcpConnection::gobj | ( | ) | const [inline] |
Provides access to the underlying C GObject.
Reimplemented from Gio::SocketConnection.
GTcpConnection* Gio::TcpConnection::gobj | ( | ) | [inline] |
Provides access to the underlying C GObject.
Reimplemented from Gio::SocketConnection.
GTcpConnection* Gio::TcpConnection::gobj_copy | ( | ) |
Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
Reimplemented from Gio::SocketConnection.
void Gio::TcpConnection::set_graceful_disconnect | ( | bool | graceful_disconnect | ) |
This enabled graceful disconnects on close.
A graceful disconnect means that we signal the recieving end that the connection is terminated and wait for it to close the connection before closing the connection.
A graceful disconnect means that we can be sure that we successfully sent all the outstanding data to the other end, or get an error reported. However, it also means we have to wait for all the data to reach the other side and for it to acknowledge this by closing the socket, which may take a while. For this reason it is disabled by default.
graceful_disconnect | Whether to do graceful disconnects or not. |
Glib::RefPtr< Gio::TcpConnection > wrap | ( | GTcpConnection * | 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. |