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.
16 lines
247 B
16 lines
247 B
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct fuse_req_ctx_t fuse_req_ctx_t;
|
|
struct fuse_req_ctx_t
|
|
{
|
|
uint32_t len;
|
|
uint32_t opcode;
|
|
uint64_t unique;
|
|
uint64_t nodeid;
|
|
uint32_t uid;
|
|
uint32_t gid;
|
|
uint32_t pid;
|
|
uint32_t umask;
|
|
};
|