2003-10-16 20:50:09 +04:00
|
|
|
#ifndef __UTILVFS_H
|
|
|
|
#define __UTILVFS_H
|
|
|
|
|
1999-01-27 03:49:11 +03:00
|
|
|
#include "../src/global.h"
|
1999-01-19 05:23:30 +03:00
|
|
|
|
|
|
|
#include "../src/tty.h" /* enable/disable interrupt key */
|
2003-10-26 07:47:20 +03:00
|
|
|
#include "../src/wtools.h" /* message() */
|
2002-11-14 10:26:32 +03:00
|
|
|
#include "../src/main.h" /* print_vfs_message */
|
2003-10-16 20:50:09 +04:00
|
|
|
|
|
|
|
/* Flags for vfs_split_url() */
|
|
|
|
#define URL_ALLOW_ANON 1
|
|
|
|
#define URL_NOSLASH 2
|
|
|
|
|
|
|
|
char *vfs_split_url (const char *path, char **host, char **user, int *port,
|
|
|
|
char **pass, int default_port, int flags);
|
|
|
|
|
|
|
|
int finduid (char *name);
|
|
|
|
int findgid (char *name);
|
|
|
|
|
|
|
|
#endif /* !__UTILVFS_H */
|