ftp_super 443 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 449 src/vfs/ftpfs/ftpfs.c char *cwdir = ftp_super->current_dir; ftp_super 451 src/vfs/ftpfs/ftpfs.c close (ftp_super->sock); ftp_super 452 src/vfs/ftpfs/ftpfs.c ftp_super->sock = sock; ftp_super 453 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = NULL; ftp_super 465 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = cwdir; ftp_super 477 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 507 src/vfs/ftpfs/ftpfs.c status = write (ftp_super->sock, cmdstr->str, cmdstr->len); ftp_super 520 src/vfs/ftpfs/ftpfs.c if (status != 0 && (write (ftp_super->sock, cmdstr->str, cmdstr->len) > 0)) ftp_super 537 src/vfs/ftpfs/ftpfs.c status = ftpfs_get_reply (me, ftp_super->sock, ftp_super 546 src/vfs/ftpfs/ftpfs.c if (status != 0 && (write (ftp_super->sock, cmdstr->str, cmdstr->len) > 0)) ftp_super 581 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 583 src/vfs/ftpfs/ftpfs.c if (ftp_super->sock != -1) ftp_super 587 src/vfs/ftpfs/ftpfs.c close (ftp_super->sock); ftp_super 589 src/vfs/ftpfs/ftpfs.c g_free (ftp_super->current_dir); ftp_super 612 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 619 src/vfs/ftpfs/ftpfs.c ftp_super->isbinary = TYPE_UNKNOWN; ftp_super 654 src/vfs/ftpfs/ftpfs.c if (ftp_super->proxy != NULL) ftp_super 662 src/vfs/ftpfs/ftpfs.c if (ftpfs_get_reply (me, ftp_super->sock, reply_string, sizeof (reply_string) - 1) == COMPLETE) ftp_super 667 src/vfs/ftpfs/ftpfs.c ftp_super->remote_is_amiga = strstr (reply_up, "AMIGA") != NULL; ftp_super 670 src/vfs/ftpfs/ftpfs.c ftp_super->strict = RFC_STRICT; ftp_super 676 src/vfs/ftpfs/ftpfs.c ftp_super->remote_is_amiga ? "yes" : "no"); ftp_super 714 src/vfs/ftpfs/ftpfs.c ftp_super->failed_on_login = TRUE; ftp_super 958 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 962 src/vfs/ftpfs/ftpfs.c if (ftp_super->proxy != NULL) ftp_super 963 src/vfs/ftpfs/ftpfs.c ftp_super->use_passive_connection = ftpfs_use_passive_connections_over_proxy; ftp_super 967 src/vfs/ftpfs/ftpfs.c ftp_super->failed_on_login = FALSE; ftp_super 969 src/vfs/ftpfs/ftpfs.c ftp_super->sock = ftpfs_open_socket (me, super); ftp_super 970 src/vfs/ftpfs/ftpfs.c if (ftp_super->sock == -1) ftp_super 979 src/vfs/ftpfs/ftpfs.c if (!ftp_super->failed_on_login) ftp_super 983 src/vfs/ftpfs/ftpfs.c close (ftp_super->sock); ftp_super 1007 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = ftpfs_get_current_directory (me, super); ftp_super 1008 src/vfs/ftpfs/ftpfs.c if (ftp_super->current_dir == NULL) ftp_super 1009 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = g_strdup (PATH_SEP_STR); ftp_super 1298 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1306 src/vfs/ftpfs/ftpfs.c if (ftp_super->use_passive_connection) ftp_super 1308 src/vfs/ftpfs/ftpfs.c result = getpeername (ftp_super->sock, (struct sockaddr *) data_addr, data_addrlen); ftp_super 1329 src/vfs/ftpfs/ftpfs.c result = getsockname (ftp_super->sock, (struct sockaddr *) data_addr, data_addrlen); ftp_super 1380 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1391 src/vfs/ftpfs/ftpfs.c if (ftp_super->use_passive_connection) ftp_super 1403 src/vfs/ftpfs/ftpfs.c ftp_super->use_passive_connection = FALSE; ftp_super 1409 src/vfs/ftpfs/ftpfs.c if (!ftp_super->use_passive_connection) ftp_super 1432 src/vfs/ftpfs/ftpfs.c ftp_super->use_passive_connection = ftp_super->proxy != NULL ftp_super 1446 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1450 src/vfs/ftpfs/ftpfs.c if (ftp_super->ctl_connection_busy) ftp_super 1492 src/vfs/ftpfs/ftpfs.c if (ftp_super->use_passive_connection) ftp_super 1509 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = TRUE; ftp_super 1519 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1525 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 1529 src/vfs/ftpfs/ftpfs.c if (send (ftp_super->sock, ipbuf, sizeof (ipbuf), MSG_OOB) != sizeof (ipbuf)) ftp_super 1576 src/vfs/ftpfs/ftpfs.c if ((ftpfs_get_reply (me, ftp_super->sock, NULL, 0) == TRANSIENT) && (code == 426)) ftp_super 1577 src/vfs/ftpfs/ftpfs.c ftpfs_get_reply (me, ftp_super->sock, NULL, 0); ftp_super 1789 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 1799 src/vfs/ftpfs/ftpfs.c cd_first = ftpfs_first_cd_then_ls || (ftp_super->strict == RFC_STRICT) ftp_super 1804 src/vfs/ftpfs/ftpfs.c ftp_super->strict == RFC_STRICT ? _ ("(strict rfc959)") : "", ftp_super 1816 src/vfs/ftpfs/ftpfs.c if (ftp_super->strict == RFC_STRICT) ftp_super 1835 src/vfs/ftpfs/ftpfs.c if (ftp_super->strict == RFC_AUTODETECT) ftp_super 1839 src/vfs/ftpfs/ftpfs.c ftp_super->strict = RFC_STRICT; ftp_super 1857 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 1858 src/vfs/ftpfs/ftpfs.c ftpfs_get_reply (me, ftp_super->sock, NULL, 0); ftp_super 1875 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 1877 src/vfs/ftpfs/ftpfs.c if ((ftpfs_get_reply (me, ftp_super->sock, NULL, 0) != COMPLETE)) ftp_super 1909 src/vfs/ftpfs/ftpfs.c if (ftp_super->strict == RFC_AUTODETECT) ftp_super 1910 src/vfs/ftpfs/ftpfs.c ftp_super->strict = RFC_DARING; ftp_super 1922 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 2007 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 2010 src/vfs/ftpfs/ftpfs.c if (ftpfs_get_reply (me, ftp_super->sock, NULL, 0) != COMPLETE) ftp_super 2017 src/vfs/ftpfs/ftpfs.c ftp_super->ctl_connection_busy = FALSE; ftp_super 2020 src/vfs/ftpfs/ftpfs.c ftpfs_get_reply (me, ftp_super->sock, NULL, 0); ftp_super 2242 src/vfs/ftpfs/ftpfs.c ftp_super_t *ftp_super = FTP_SUPER (super); ftp_super 2246 src/vfs/ftpfs/ftpfs.c if (!ftp_super->cwd_deferred && ftpfs_is_same_dir (me, super, remote_path)) ftp_super 2257 src/vfs/ftpfs/ftpfs.c g_free (ftp_super->current_dir); ftp_super 2258 src/vfs/ftpfs/ftpfs.c ftp_super->current_dir = g_strdup (remote_path); ftp_super 2259 src/vfs/ftpfs/ftpfs.c ftp_super->cwd_deferred = FALSE;