1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-01 05:47:28 +03:00

2980 Commits

Author SHA1 Message Date
Luke Leighton
f9f8aa72a5 use DEBUGLEVEL not DEBUGLVL() -
Luke Leighton
1d05d2c959 wow!!!! this one's been here for two years!!!! alignment issues
in smb_io_dom_query() where the string name could mis-align!
added a call to prs_align() after the domain string name.
-
Luke Leighton
5c551e63f2 oops. -
Luke Leighton
6c98d6c9aa added rpcclient SamrQueryDisplayInfo command "dispinfo" -
Luke Leighton
9d74161a92 restructuring -
Luke Leighton
7fc2ee2f96 using #define report -
Luke Leighton
8fb2ff247a - initialising mach_passwd_file locks to zero (prev. uninit.)
- cleanup

- #defined report to sprintf as it's #defined to another function in
  other uses of cmd_lsarpc.c
-
Luke Leighton
4e5eac18d0 oops, port 455 instead of 445 -
Luke Leighton
f9a0ea0948 allan hourihane sent log 100 in which showed that some really old code
for lsa_close response was messing up.  fixed by calling lsa_io_r_close()
which i've been meaning to do for over eighteen months.
-
Luke Leighton
727e1421b2 bertl <bs@niggard.org> patch for making samba listen on port 445, just like
nt 5 does.  cool!
-
Luke Leighton
001b53866c matthew chapman identified 4 previously unknown samr functions. -
Luke Leighton
1cde47ba6a debugged enumgroups -g option -
Luke Leighton
e2a72e2c64 added call to samr_query_groupinfo in enumgroups command (-m option) -
Luke Leighton
65a54b6e16 improved "dominfo" rpcclient command -
Luke Leighton
7a383a2a02 added experimental del_groupmem and del_aliasmem commands that were not
being called from rpcclient.c

improved add_groupmem command, but cannot test it against nt non-pdc!
-
Matthew Chapman
cc27dba003 Removing a stray return, probably inserted during debugging, which broke
NetrShareEnum. Be careful what you commit Luke...
-
Tim Potter
92ebd8f12c Don't print out a message in svcenum command for the ERRmoredata
error.
-
Luke Leighton
e90e38c66d patch from michael glauche to add session enum code into smbd. -
Luke Leighton
e0713cf933 display of session enum info -
Luke Leighton
819af56074 event log update, netsessenum, netconnenum update. -
Luke Leighton
bcc1212b07 event log update -
Luke Leighton
5c974cc4a4 debug info display (netbios layer). -
Luke Leighton
6218d986c7 added back test to exclude unused connections. -
Luke Leighton
d794e2eb51 patch from Michael Glauche to call get_status_connections() instead of
reading STATUS..LCK direct.
-
Luke Leighton
b1025d499b use read() instead of fread() as fread() fails on redhat 6. -
Luke Leighton
f1fdf4c391 adding lib/util_status.c to Makefile.in -
Luke Leighton
91a66dd5c3 patch from Michael Glauche to list connections from STATUS..LCK. -
Luke Leighton
ec11bbaf54 added some usage info for rpcclient. -
Luke Leighton
b8ac96cd9c spelling mistake. -
Luke Leighton
41cb8b0ba0 pnum should be a uint16. -
Matthew Chapman
8a603a8793 Fix for Win95 not being able to find PDC (for User/Server Manager, and
password change requests), from Michael Stockman <pgmtekn@algonet.se>.
GETDC on \MAILSLOT\NET\NETLOGON necessarily returns less information
than the NTLOGON version.
-
Matthew Chapman
c086c7ab94 Some compilers want (void) instead of just () in function declarations. -
Luke Leighton
5b8961a9d4 reverted lookup change. from ignacio. -
Luke Leighton
c4901f5951 changing debug output message reg_io_unknown_1 to reg_io_close. -
Luke Leighton
b2d9cbef6f reverted jeremy's c++-like security descriptor modifications as the
simplest method to get rpcclient's reggetsec command working.  the
buffers passed as arguments in do_reg_get_key_sec() do need to be
locally allocated not dynamically allocated, as two calls to
reg_get_key_sec() are needed.  on the first, the server fills in the
size of the security descriptor buffer needed.  on the second, the
server fills in the security descriptor buffer.
-
Luke Leighton
062b9302c1 bug-fix in connection to port 445. cool! it works! -
Luke Leighton
5f821e6501 attempting a connection to port 445 first, followed by a connection to 139
if this fails.
-
Luke Leighton
fdc275353d close socket issues:
- ssl close from cli_reestablish_connection() not called.
- ntlmv2 fall-back to ntlmv1 failed.
-
Tim Potter
5e0994b8bb Fixed quoting/escaping bug in example code. -
Jean-François Micouleau
bf9b639bf9 - enumprintprocessors and enumprintmonitors added.
- getjob (level 1 and 2) done.
- better handling of getprinterdriver (level 2).
- added workaround to print PCL files.

Now the spoolss code should be compliant with all kind of printers :-)

	Jean Francois
-
Luke Leighton
1a211bafeb renaming AUTH VERIFIER to AUTH NTLMSSP VERIFIER. ready for adding
another RPC authentication system.
-
Luke Leighton
717af2d55d Jean-Francois spotted bug in use of file_modified() routine submitted
recently.
-
Luke Leighton
fd886af331 commented location where lookup_sids(), a direct call to the password
database API, needs to be replaced with over-the-wire (actually, tcp/ip
loopback) to smbd.

in fact, this is the location where, if we want to put in an nt5 ldap
lookup system or netware NDS instead, we make the calls to resolve
users-to-sids and vice-versa: NOT by replacing rpc_server/srv_samr.c.
-
Tim Potter
569aca445a 'export BEANS=ham' is a bash-ism. For those who don't have a symbolic
link from bash to /bin/sh, the correct form is 'BEANS=ham; export BEANS'.
-
Matthew Chapman
21c92d2497 BDC support.
Added -S (Synchronise) option to smbpasswd, which calls synchronise_passdb.
-
Matthew Chapman
05a2687b7c BDC support. -
Matthew Chapman
8e36b07a0e BDC support.
Fixing and clarifying SAM_PWD structure.
-
Matthew Chapman
4783ac3968 BDC support.
Added synchronise_passdb function to update accounts in a BDC's smbpasswd.
Improved rpc_read, which was still somewhat broken for multiple PDU's.
modify_trust_password must initialise cli.pwd (pwd_set_nullpwd).
-
Matthew Chapman
f0c71a804d BDC support.
Algorithm based on previous work of Jeremy's.
-
Tim Potter
50be413a9f make proto -