/* a tree for file path's - this mirrors the directory structure */
struct Node
{
String *remname;
Dir *d;
Node *parent;
Node *sibs;
Node *children;
File *fp;
short depth;
char chdirunknown; /* true if QTDIR bit of files in this dir is unknown */
int opens;
};
extern Node *remdir; /* current directory on remote side */
extern Node *remroot; /* root on remote side */
extern int os; /* remote os */
extern int debug; /* non-zero triggers debugging output */
extern int usenlst;
extern char *nosuchfile;
extern char *ext; /* add to names of non-dir files */
extern int defos;
extern int quiet;
extern char *user;