ftp_super 442 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 448 src/vfs/ftpfs/ftpfs.c char *cwdir = ftp_super->current_dir; ftp_super 450 src/vfs/ftpfs/ftpfs.c close (ftp_super->sock); ftp_super 451 src/vfs/ftpfs/ftpfs.c ftp_super->sock = sock; ftp_super 452 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = NULL; ftp_super 464 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = cwdir; ftp_super 476 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 506 src/vfs/ftpfs/ftpfs.c status = write (ftp_super->sock, cmdstr->str, cmdstr->len); ftp_super 519 src/vfs/ftpfs/ftpfs.c if (status != 0 && (write (ftp_super->sock, cmdstr->str, cmdstr->len) > 0)) ftp_super 536 src/vfs/ftpfs/ftpfs.c status = ftpfs_get_reply (me, ftp_super->sock, ftp_super 545 src/vfs/ftpfs/ftpfs.c if (status != 0 && (write (ftp_super->sock, cmdstr->str, cmdstr->len) > 0)) ftp_super 580 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 582 src/vfs/ftpfs/ftpfs.c if (ftp_super->sock != -1) ftp_super 586 src/vfs/ftpfs/ftpfs.c close (ftp_super->sock); ftp_super 588 src/vfs/ftpfs/ftpfs.c g_free (ftp_super->current_dir); ftp_super 611 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 618 src/vfs/ftpfs/ftpfs.c ftp_super->isbinary = TYPE_UNKNOWN; ftp_super 653 src/vfs/ftpfs/ftpfs.c if (ftp_super->proxy != NULL) ftp_super 661 src/vfs/ftpfs/ftpfs.c if (ftpfs_get_reply (me, ftp_super->sock, reply_string, sizeof (reply_string) - 1) == COMPLETE) ftp_super 666 src/vfs/ftpfs/ftpfs.c ftp_super->remote_is_amiga = strstr (reply_up, "AMIGA") != NULL; ftp_super 669 src/vfs/ftpfs/ftpfs.c ftp_super->strict = RFC_STRICT; ftp_super 675 src/vfs/ftpfs/ftpfs.c ftp_super->remote_is_amiga ? "yes" : "no"); ftp_super 713 src/vfs/ftpfs/ftpfs.c ftp_super->failed_on_login = TRUE; ftp_super 957 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 961 src/vfs/ftpfs/ftpfs.c if (ftp_super->proxy != NULL) ftp_super 962 src/vfs/ftpfs/ftpfs.c ftp_super->use_passive_connection = ftpfs_use_passive_connections_over_proxy; ftp_super 966 src/vfs/ftpfs/ftpfs.c ftp_super->failed_on_login = FALSE; ftp_super 968 src/vfs/ftpfs/ftpfs.c ftp_super->sock = ftpfs_open_socket (me, super); ftp_super 969 src/vfs/ftpfs/ftpfs.c if (ftp_super->sock == -1) ftp_super 978 src/vfs/ftpfs/ftpfs.c if (!ftp_super->failed_on_login) ftp_super 982 src/vfs/ftpfs/ftpfs.c close (ftp_super->sock); ftp_super 1006 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = ftpfs_get_current_directory (me, super); ftp_super 1007 src/vfs/ftpfs/ftpfs.c if (ftp_super->current_dir == NULL) ftp_super 1008 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = g_strdup (PATH_SEP_STR); ftp_super 1297 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1305 src/vfs/ftpfs/ftpfs.c if (ftp_super->use_passive_connection) ftp_super 1307 src/vfs/ftpfs/ftpfs.c result = getpeername (ftp_super->sock, (struct sockaddr *) data_addr, data_addrlen); ftp_super 1328 src/vfs/ftpfs/ftpfs.c result = getsockname (ftp_super->sock, (struct sockaddr *) data_addr, data_addrlen); ftp_super 1379 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1390 src/vfs/ftpfs/ftpfs.c if (ftp_super->use_passive_connection) ftp_super 1402 src/vfs/ftpfs/ftpfs.c ftp_super->use_passive_connection = FALSE; ftp_super 1408 src/vfs/ftpfs/ftpfs.c if (!ftp_super->use_passive_connection) ftp_super 1431 src/vfs/ftpfs/ftpfs.c ftp_super->use_passive_connection = ftp_super->proxy != NULL ftp_super 1445 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1449 src/vfs/ftpfs/ftpfs.c if (ftp_super->ctl_connection_busy) ftp_super 1491 src/vfs/ftpfs/ftpfs.c if (ftp_super->use_passive_connection) ftp_super 1508 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = TRUE; ftp_super 1518 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1524 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 1528 src/vfs/ftpfs/ftpfs.c if (send (ftp_super->sock, ipbuf, sizeof (ipbuf), MSG_OOB) != sizeof (ipbuf)) ftp_super 1575 src/vfs/ftpfs/ftpfs.c if ((ftpfs_get_reply (me, ftp_super->sock, NULL, 0) == TRANSIENT) && (code == 426)) ftp_super 1576 src/vfs/ftpfs/ftpfs.c ftpfs_get_reply (me, ftp_super->sock, NULL, 0); ftp_super 1788 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1798 src/vfs/ftpfs/ftpfs.c cd_first = ftpfs_first_cd_then_ls || (ftp_super->strict == RFC_STRICT) ftp_super 1803 src/vfs/ftpfs/ftpfs.c ftp_super->strict == RFC_STRICT ? _ ("(strict rfc959)") : "", ftp_super 1815 src/vfs/ftpfs/ftpfs.c if (ftp_super->strict == RFC_STRICT) ftp_super 1834 src/vfs/ftpfs/ftpfs.c if (ftp_super->strict == RFC_AUTODETECT) ftp_super 1838 src/vfs/ftpfs/ftpfs.c ftp_super->strict = RFC_STRICT; ftp_super 1856 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 1857 src/vfs/ftpfs/ftpfs.c ftpfs_get_reply (me, ftp_super->sock, NULL, 0); ftp_super 1874 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 1876 src/vfs/ftpfs/ftpfs.c if ((ftpfs_get_reply (me, ftp_super->sock, NULL, 0) != COMPLETE)) ftp_super 1908 src/vfs/ftpfs/ftpfs.c if (ftp_super->strict == RFC_AUTODETECT) ftp_super 1909 src/vfs/ftpfs/ftpfs.c ftp_super->strict = RFC_DARING; ftp_super 1921 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 2006 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 2009 src/vfs/ftpfs/ftpfs.c if (ftpfs_get_reply (me, ftp_super->sock, NULL, 0) != COMPLETE) ftp_super 2016 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 2019 src/vfs/ftpfs/ftpfs.c ftpfs_get_reply (me, ftp_super->sock, NULL, 0); ftp_super 2241 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 2245 src/vfs/ftpfs/ftpfs.c if (!ftp_super->cwd_deferred && ftpfs_is_same_dir (me, super, remote_path)) ftp_super 2256 src/vfs/ftpfs/ftpfs.c g_free (ftp_super->current_dir); ftp_super 2257 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = g_strdup (remote_path); ftp_super 2258 src/vfs/ftpfs/ftpfs.c ftp_super->cwd_deferred = FALSE;