Displaying 6 results from an estimated 6 matches for "smb_vfs_interface_version".
2010 Mar 13
2
vfs module Samba 3.5.1
...n error
in the packaging or do I need to be looking else where. A snippet
from the log file follows:
<extracted from log>
[2010/03/12 19:58:59, 0, pid=28792, effective(0, 0), real(0, 0)]
smbd/vfs.c:66(smb_register_vfs)
Failed to register vfs module.
The module was compiled against SMB_VFS_INTERFACE_VERSION 27,
current SMB_VFS_INTERFACE_VERSION is 25.
Please recompile against the current Samba Version!
[2010/03/12 19:58:59, 0, pid=28792, effective(0, 0), real(0, 0)]
lib/module.c:69(do_smb_load_module)
Module '/usr/lib64/samba/vfs/recycle.so' initialization failed:
NT_STATUS_OBJECT_TYP...
2007 Feb 28
2
VFS module and C++
...y help.
Roman
The fragment of the code looks like this:
extern "C" {
#include "includes.h"
};
# skeleton methods, tuples are there...
extern "C" {
NTSTATUS init_module(void)
{
DEBUG(2,("Inicialization does work"));
return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "mytest_vfs",
skel_op_tuples);
}
};
And my Makefile:
CC = gcc
CFLAGS = -g -O2
CPPFLAGS =
LDFLAGS =
LDSHFLAGS = -shared
INSTALLCMD = /usr/bin/install -c
SAMBA_SOURCE = ../../source
SHLIBEXT = so
OBJEXT = o
FLAGS...
2005 Feb 08
1
FC3 vfs object smb.conf samba 3.0.11
When Kaspersky adds the following to smb.conf
I can't connect from XP.
If I comment out "vfs object" connection is restored.
<snip>
[store-00]
# ADDED BY KASPERSKY ANTI-VIRUS FOR SAMBA SERVERS 5.0
vfs object = kavsamba5-smb-3.0.2
comment = File Directories
path = /store-00
browseable = yes
writeable = yes
valid users = frank
read only = no
2004 Feb 17
0
VFS module programmieren
...red module.
This should be the only non static function inside the module. Global
variables should also be static!
The module should register its functions via the
NTSTATUS smb_register_vfs(int version, const char *name, vfs_op_tuple
*vfs_op_tuples);
function.
version
should be filled with SMB_VFS_INTERFACE_VERSION
name
this is the name witch can be listed in the vfs objects parameter to use
this module.
vfs_op_tuples
this is an array of vfs_op_tuple's. (vfs_op_tuples is descripted in
details below.)
For each operation the module wants to provide it has a entry in the
vfs_op_tuple array.
typed...
2005 Aug 29
2
samba permissions
There was another tech coordinator that asked the following on our list:
> Hey all, I was wondering if anyone knew of a way to give students
read/write permissions to a certain drive letter without giving them the
ability to delete other (or thier own) files. Currently I have chmod
1770 permissions (read write, but only owner can delete) and one owner
(the teacher) for all the files, but
2004 Dec 27
0
3.0.10 vfs problem with file_ext_map
...bsoulte path with vfs
object - which doesn't work (and it doesn't work for the standard audit
module either). The samba vfs modules are only called by their
(short)name - I already tried various combinations, where can I find the
correct name, is it the name in
return smb_register_vfs(SMB_VFS_INTERFACE_VERSION,"file_ext_map_3.0",file_ext_op_tuples);
--> file_ext_map_3.0 or is it just the file-name without ".so" ?
I tried "file_ext_map3.0", "file_ext_map", "file_ext_map3" and so on.
None of them work.
Any ideas or hints, how to solve this problem...