Displaying 1 result from an estimated 1 matches for "vfs_next".
Did you mean:
v_next
2004 Feb 17
0
VFS module programmieren
...RFACE_VERSION, "example",
example_op_tuples);
}
How the Modules handle per connection data
Each VFS function has as first parameter a pointer to the modules
vfs_handle_struct.
typedef struct vfs_handle_struct {
struct vfs_handle_struct *next, *prev;
const char *param;
struct vfs_ops vfs_next;
struct connection_struct *conn;
void *data;
void (*free_data)(void **data);
} vfs_handle_struct;
param
this is the module parameter specified in the vfs objects parameter.
e.g. for 'vfs objects = example:test' param would be "test".
vfs_next
This vfs_ops struct co...