2005-02-19 00:15:37 +03:00
|
|
|
#ifndef MC_VFS_UTILVFS_H
|
|
|
|
#define MC_VFS_UTILVFS_H
|
2003-10-16 20:50:09 +04:00
|
|
|
|
2005-02-19 19:36:38 +03:00
|
|
|
#include <sys/stat.h>
|
2003-10-16 20:50:09 +04:00
|
|
|
|
|
|
|
/* Flags for vfs_split_url() */
|
|
|
|
#define URL_ALLOW_ANON 1
|
|
|
|
#define URL_NOSLASH 2
|
|
|
|
|
2004-08-17 13:48:15 +04:00
|
|
|
int vfs_finduid (const char *name);
|
|
|
|
int vfs_findgid (const char *name);
|
2003-11-05 09:08:16 +03:00
|
|
|
|
2003-10-16 20:50:09 +04:00
|
|
|
char *vfs_split_url (const char *path, char **host, char **user, int *port,
|
|
|
|
char **pass, int default_port, int flags);
|
2003-11-05 09:08:16 +03:00
|
|
|
int vfs_split_text (char *p);
|
2003-10-16 20:50:09 +04:00
|
|
|
|
2003-10-29 03:50:36 +03:00
|
|
|
int vfs_mkstemps (char **pname, const char *prefix, const char *basename);
|
2003-11-05 09:08:16 +03:00
|
|
|
void vfs_die (const char *msg);
|
2004-08-16 19:45:05 +04:00
|
|
|
char *vfs_get_password (const char *msg);
|
2003-11-05 09:08:16 +03:00
|
|
|
|
2005-09-26 15:10:24 +04:00
|
|
|
gboolean vfs_parse_filetype (const char *s, size_t *ret_skipped,
|
|
|
|
mode_t *ret_type);
|
|
|
|
gboolean vfs_parse_fileperms (const char *s, size_t *ret_skipped,
|
|
|
|
mode_t *ret_perms);
|
|
|
|
gboolean vfs_parse_filemode (const char *s, size_t *ret_skipped,
|
|
|
|
mode_t *ret_mode);
|
|
|
|
|
2003-11-05 09:08:16 +03:00
|
|
|
int vfs_parse_ls_lga (const char *p, struct stat *s, char **filename,
|
|
|
|
char **linkname);
|
|
|
|
int vfs_parse_filedate (int idx, time_t *t);
|
2003-10-16 20:50:09 +04:00
|
|
|
|
2005-02-19 00:15:37 +03:00
|
|
|
#endif
|