mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
225 B
19 lines
225 B
#pragma once
|
|
|
|
#include "int_types.h"
|
|
|
|
#define FUSE_CFG_INVALID_ID -1
|
|
|
|
struct fuse_cfg_t
|
|
{
|
|
s64 uid = -1;
|
|
bool valid_uid() const;
|
|
|
|
s64 gid = -1;
|
|
|
|
s64 remember = 0;
|
|
|
|
bool debug = false;
|
|
};
|
|
|
|
extern fuse_cfg_t fuse_cfg;
|