summaryrefslogtreecommitdiff
path: root/daemon/gvfsftpdircache.h
Commit message (Collapse)AuthorAgeFilesLines
* Update the Address of the FSFFelix Möller2012-07-301-2/+2
| | | | | | | | | | | | | | | Updating the address of the FSF. This has been done by: while read file; do sed -i 's:59 Temple Place:51 Franklin Street:' $file sed -i 's:Suite 330:Fifth Floor:' $file sed -i 's:02111-1307:02110-1301:' $file done https://bugzilla.gnome.org/show_bug.cgi?id=656598 Signed-off-by: Tomas Bzatek <tbzatek@redhat.com>
* [FTP] rework handling of uncached filesBenjamin Otte2009-06-111-2/+3
| | | | | | | | | | The directory cache needs a callback to lookup uncachable files. Uncachaable files are files that can be accessed but where the parent directory cannot be listed. This has to go into the directory cache, as the directory cache performs symlink resolving and looking up symlinks may encounter such files. Fixes a testcase in Andreas' test collection.
* [FTP] whitespace changesBenjamin Otte2009-06-111-1/+1
| | | | | - replace tabs with 8 spaces - remove spaces at end of line
* [FTP] improve debuggingBenjamin Otte2009-06-111-0/+1
| | | | | - print LIST replies again - make connections have a debug id and use it for debugging prints
* [FTP] rework cache handlingBenjamin Otte2009-06-111-0/+76
The cache handling has been split into a separate file and structure now. While the API still isn't perfect, it's much clearer than before. It's also faster when looking up lots of symlinks.