Initial revamp of the libsmbclient interface.
authorDerrell Lipman <derrell.lipman@unwireduniverse.com>
Thu, 28 Feb 2008 16:23:20 +0000 (11:23 -0500)
committerDerrell Lipman <derrell.lipman@unwireduniverse.com>
Sun, 2 Mar 2008 01:47:22 +0000 (20:47 -0500)
commit257b7b09298f7cb983b2f31b87fc5e46e0f62f0c
tree696951497f7fc012ff06349de9a867bda22d78bd
parent422af9a516dd36fa291a28fd5753a05c139aaecb
Initial revamp of the libsmbclient interface.

The libsmbclient interface has suffered from difficulty of improvement and
feature enrichment without causing ABI breakage.  Although there were a number
of issues, the primary ones were:

(a) the user of the library would manually manipulate the context structure
    members, meaning that nothing in the context structure could change other
    than adding stuff at the end;

(b) there were three methods of setting options: setting bits in a flags field
    within the context structure, setting explicit options variables within an
    options structure in the context structure, and by calling the
    smbc_option_set() function;

(c) the authentication callback did not traditionally provide enough
    information to the callee which required adding an option for a callback
    with a different signature, and now there are requests for even more
    information at the callback, requiring yet a third signature and option to
    set it (if we implement that feature).

This commit provides a reorganization of the code which fixes (a) and (b).
The context structure is now entirely opaque, and there are setter and getter
functions for manipulating it.  This makes maintaining ABI consistency much,
much easier.

Additionally, the options setting/getting has been unified into a single
mechanism using smbc_option_set() and smbc_option_get().

Yet to be completed is a refactoring of the authentication callback (c).

The test programs in examples/libsmbclient have been modified (if necessary;
some applications require no changes at all) for the new API and a few have
been minimally tested.

Derrell
(This used to be commit d4b4bae8ded824d06ad5ab0e219f71187ee5c771)
18 files changed:
examples/libsmbclient/smbwrapper/smbw.c
examples/libsmbclient/testbrowse.c
examples/libsmbclient/testbrowse2.c
source3/Makefile.in
source3/include/libsmb_internal.h
source3/include/libsmbclient.h
source3/libsmb/libsmb_cache.c
source3/libsmb/libsmb_compat.c
source3/libsmb/libsmb_context.c [new file with mode: 0644]
source3/libsmb/libsmb_dir.c [new file with mode: 0644]
source3/libsmb/libsmb_file.c [new file with mode: 0644]
source3/libsmb/libsmb_misc.c [new file with mode: 0644]
source3/libsmb/libsmb_path.c [new file with mode: 0644]
source3/libsmb/libsmb_printjob.c [new file with mode: 0644]
source3/libsmb/libsmb_server.c [new file with mode: 0644]
source3/libsmb/libsmb_stat.c [new file with mode: 0644]
source3/libsmb/libsmb_xattr.c [new file with mode: 0644]
source3/libsmb/libsmbclient.c [deleted file]