2003-08-13 05:53:07 +04:00
/*
Unix SMB / CIFS implementation .
SMB parameters and setup
2004-11-01 04:03:22 +03:00
Copyright ( C ) Andrew Tridgell 2004
2003-08-13 05:53:07 +04:00
Copyright ( C ) James Myers 2003 < myersjj @ samba . org >
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-08-13 05:53:07 +04:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-13 05:53:07 +04:00
*/
2006-03-14 18:03:25 +03:00
# ifndef __LIBCLI_H__
# define __LIBCLI_H__
2006-03-17 16:55:10 +03:00
# include "librpc/gen_ndr/nbt.h"
2006-01-03 18:40:05 +03:00
2007-09-09 23:34:30 +04:00
struct substitute_context ;
2003-08-13 05:53:07 +04:00
/*
2004-08-04 17:23:35 +04:00
smbcli_state : internal state used in libcli library for single - threaded callers ,
2003-08-13 05:53:07 +04:00
i . e . a single session on a single socket .
*/
2004-08-04 17:23:35 +04:00
struct smbcli_state {
struct smbcli_transport * transport ;
struct smbcli_session * session ;
struct smbcli_tree * tree ;
2004-11-02 10:18:24 +03:00
struct substitute_context * substitute ;
2004-12-06 10:12:38 +03:00
struct smblsa_state * lsa ;
2003-08-13 05:53:07 +04:00
} ;
2006-01-03 18:40:05 +03:00
struct clilist_file_info {
uint64_t size ;
uint16_t attrib ;
time_t mtime ;
const char * name ;
const char * short_name ;
} ;
r12858: This moves the libnet_LookupPdc code to use a GetDC request to find
the remote server's name, or in the absence of a local nbt_server to
communicate with (or without root access), a node status request.
The result is that we are in a better position to use kerberos, as well
as to remove the 'password server' mandatory parameter for the samsync
and samdump commands. (I need this to put these into SWAT).
The only problem I have is that I must create a messaging context, which
requires a server ID. As a client process, I don't expect to get
messages, but it is currently required for replies, so I generate a
random() number. We probably need the servers to accept connections on
streamed sockets too, for client-only tasks that want IRPC.
Because I wanted to test this code, I have put the NET-API-* tests into
our test scripts, to ensure they pass and keep passing. They are good
frontends onto the libnet system, and I see no reason not to test them.
In doing so the NET-API-RPCCONNECT test was simplified to take a
binding string on the command line, removing duplicate code, and
testing the combinations in the scripts instead.
(I have done a bit of work on the list shares code in libnet_share.c
to make it pass 'make test')
In the future, I would like to extend the libcli/findds.c code (based
off volker's winbind/wb_async_helpers.c, which is why it shows up a bit
odd in the patch) to handle getting multiple name replies, sending a
getdc request to each in turn.
(posted to samba-technical for review, and I'll happily update with
any comments)
Andrew Bartlett
(This used to be commit 7ccddfd3515fc2c0d6f447c768ccbf7a220c3380)
2006-01-12 06:02:00 +03:00
struct nbt_dc_name {
const char * address ;
const char * name ;
} ;
2006-01-03 18:40:05 +03:00
2006-03-17 16:55:10 +03:00
struct cli_credentials ;
struct event_context ;
2007-08-31 04:31:32 +04:00
/* passed to br lock code. */
enum brl_type {
READ_LOCK ,
WRITE_LOCK ,
PENDING_READ_LOCK ,
PENDING_WRITE_LOCK
} ;
2006-03-17 16:55:10 +03:00
# include "libcli/raw/libcliraw.h"
2006-01-03 18:40:05 +03:00
# include "libcli/libcli_proto.h"
2006-03-14 18:03:25 +03:00
# endif /* __LIBCLI_H__ */