diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-10-10 18:53:38 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-10-10 18:53:38 +0000 |
commit | 53eec2a0d51ac5b126777fc61fa12bbc35a1a441 (patch) | |
tree | d8f7502a037127f6a52258958cd7715910f86de3 /include/fuse_common.h | |
parent | b9ea32fc3bb3410c5f436c1f1f90558ff189bf23 (diff) | |
download | libfuse-53eec2a0d51ac5b126777fc61fa12bbc35a1a441.tar.gz |
doc fixes
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r-- | include/fuse_common.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/fuse_common.h b/include/fuse_common.h index b687043..8dc7bc2 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -74,12 +74,42 @@ struct fuse_file_info { uint64_t lock_owner; }; +/** + * Connection information, passed to the ->init() method + * + * Some of the elements are read-write, these can be changed to + * indicate the value requested by the filesystem. The requested + * value must usually be smaller than the indicated value. + */ struct fuse_conn_info { + /** + * Major version of the protocol (read-only) + */ unsigned proto_major; + + /** + * Minor version of the protocol (read-only) + */ unsigned proto_minor; + + /** + * Is asynchronous read supported (read-write) + */ unsigned async_read; + + /** + * Maximum size of the write buffer + */ unsigned max_write; + + /** + * Maximum readahead + */ unsigned max_readahead; + + /** + * For future use. + */ unsigned reserved[27]; }; |