/* GIO - GLib Input, Output and Streaming Library * * Copyright (C) 2009 Benjamin Otte * * 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 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., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * * Author: Benjamin Otte */ #ifndef __G_VFS_FTP_CONNECTION_H__ #define __G_VFS_FTP_CONNECTION_H__ #include G_BEGIN_DECLS typedef struct _GVfsFtpConnection GVfsFtpConnection; typedef gboolean (*CertificateCallback) (GTlsConnection * conn, GTlsCertificate * peer_cert, GTlsCertificateFlags errors, gpointer user_data); GVfsFtpConnection * g_vfs_ftp_connection_new (GSocketConnectable * addr, GCancellable * cancellable, GError ** error); void g_vfs_ftp_connection_free (GVfsFtpConnection * conn); gboolean g_vfs_ftp_connection_send (GVfsFtpConnection * conn, const char * command, int len, GCancellable * cancellable, GError ** error); guint g_vfs_ftp_connection_receive (GVfsFtpConnection * conn, char *** reply, GCancellable * cancellable, GError ** error); gboolean g_vfs_ftp_connection_is_usable (GVfsFtpConnection * conn); GSocketAddress * g_vfs_ftp_connection_get_address (GVfsFtpConnection * conn, GError ** error); guint g_vfs_ftp_connection_get_debug_id (GVfsFtpConnection * conn); gboolean g_vfs_ftp_connection_open_data_connection (GVfsFtpConnection * conn, GSocketAddress * addr, GCancellable * cancellable, GError ** error); GSocketAddress * g_vfs_ftp_connection_listen_data_connection (GVfsFtpConnection * conn, GError ** error); gboolean g_vfs_ftp_connection_accept_data_connection (GVfsFtpConnection * conn, GCancellable * cancellable, GError ** error); void g_vfs_ftp_connection_close_data_connection (GVfsFtpConnection * conn); GIOStream * g_vfs_ftp_connection_get_data_stream (GVfsFtpConnection * conn); gboolean g_vfs_ftp_connection_enable_tls (GVfsFtpConnection * conn, GSocketConnectable * server_identity, gboolean implicit_tls, CertificateCallback cb, gpointer user_data, GCancellable * cancellable, GError ** error); gboolean g_vfs_ftp_connection_data_connection_enable_tls (GVfsFtpConnection *conn, GSocketConnectable *server_identity, CertificateCallback cb, gpointer user_data, GCancellable * cancellable, GError ** error); G_END_DECLS #endif /* __G_VFS_FTP_CONNECTION_H__ */