summaryrefslogtreecommitdiffstats
path: root/source/rpcclient
Commit message (Collapse)AuthorAgeFilesLines
...
* strtoul removed, strtol used insteadLuke Leighton1998-10-161-1/+1
|
* strtoul replace with strtolLuke Leighton1998-10-162-12/+12
|
* rpc client mods (ntlmssp flags)Luke Leighton1998-10-165-24/+34
|
* trust passwordLuke Leighton1998-10-161-1/+1
|
* rpcclient interactive login (with trust account changing if you are root)Luke Leighton1998-10-152-32/+59
| | | | cli_session_setup handles null sessions correctly
* warnings spotted by ./configure.developer optionsLuke Leighton1998-10-142-2/+1
|
* dce/rpcLuke Leighton1998-10-141-2/+3
|
* dce/rpcLuke Leighton1998-10-102-10/+51
|
* dce/rpcLuke Leighton1998-10-101-3/+3
|
* dce/rpcLuke Leighton1998-10-091-2/+30
|
* dce/rpc.Luke Leighton1998-10-092-10/+15
|
* basic client-side ntcreateX function (hard-wired values except filename)Luke Leighton1998-10-091-0/+1
|
* dce/rpcLuke Leighton1998-10-091-6/+1
|
* dce/rpcLuke Leighton1998-10-082-2/+15
|
* - fixed a bunch of warnings and minor errorsAndrew Tridgell1998-10-081-10/+10
| | | | | | - got smbtorture to compile - removed %D from some of lukes code - Luke, what is %D? it ain't portable anyway
* rpcclient srvsvc commands.Luke Leighton1998-10-051-2/+0
|
* fixed initialisation bug in rpcclient (stdout is not a constant)Andrew Tridgell1998-10-031-1/+3
|
* don't call functions that aren't there yet. (Luke had the codeAndrew Tridgell1998-10-031-0/+2
| | | | commented out in the makefile)
* Makefile.in :Luke Leighton1998-10-022-35/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - added srvsvc client files clientgen.c : - replaced cli_error(cli, int *cls, int *err) with cli_error(cli, uint8 cls, uint32 *err). this version detects 32 bit status messages. the DOS error "MORE_DATA", the equivalent of the 32 bit *warning* 0x8000 0005 (STATUS_BUFFER_OVERFLOW), was being processed as an error, terminating the cli_receive_trans() call. cli_pipe.c : - replaced calls that had been incorrectly modified from 32 bit warnings (0x8000 0005 - STATUS_BUFFER_OVERFLOW) to 8 bit DOS errors (0x01 0xEA - MORE_DATA). the use of the old version of cli_error (DOS only) instead of the new one (DOS and 32 bit) caused the dce/rpc client code to fail. - replaced 2 space indentation with tab indentation in all functions. cli_srvsvc.c : cmd_srvsvc.c : - added these files back in, fixing them up to use jeremy's modified versions of the dce/rpc client functions. parse_srv.c : - added back in some "unused" functions required by dce/rpc client-side code. it would be helpful if all such "unused" functions could be added back in. rpcclient.c : - added "session", "file", "share", "connection" enumeration functions back in. these are equivalent to nt's "NetXXXXXEnum" Win32 (MSDN) functions. - added "srvinfo" function back in. this is equivalent to nt's NetServerGetInfo Win32 (MSDN) function.
* Fix another possibly unitialized variable ...Richard Sharpe1998-10-011-1/+1
|
* lsa_lookup_sids command added. severe debugging needed on lookup_sidsLuke Leighton1998-09-302-2/+84
| | | | | | | | | code. added "quality of service" capability to lsa_open_policy code. different lsa_open_policy queries are *not* dealt with in the server code. answers like "0xC000 0022" - access denied - will have to be made to lsa_lookup_sids calls when a "quality of service" request is *not* specified in the lsa_open_policy call.
* Got very strict about the differences and uses ofJeremy Allison1998-09-291-1/+1
| | | | | | | uid_t, gid_t and vuid. Added sys_getgroups() to get around the int * return problem. Set correct datatypes for all uid, gid and vuid variables. Jeremy.
* Changes to test in configure if capabilities are enabled on a system.Jeremy Allison1998-09-282-22/+9
| | | | | | | | | | Changes to get Samba to compile cleanly with the IRIX compiler with the options : -fullwarn -woff 1209,1174 (the -woff options are to turn off warnings about unused function parameters and controlling loop expressions being constants). Split prototype generation as we hit a limit in IRIX nawk. Removed "." code in smbd/filename.c (yet again :-). Jeremy.
* Fixed up more possibly uninitialized variables.Richard Sharpe1998-09-272-2/+5
| | | | | | Now only two compilation warnings seem to be left. Luke may want to check the changes I made.
* Fixed unused variable warning messages.Jeremy Allison1998-09-253-15/+1
| | | | Jeremy.
* rpcclient: got samr command "enumusers -g -u" workingLuke Leighton1998-09-251-1/+6
|
* added in samr commands. assistance in returning the missing functions,Luke Leighton1998-09-253-141/+147
| | | | automatically removed because they were "unused", would be appreciated.
* added wksinfo command to rpcclient, which don't work too good.Luke Leighton1998-09-254-22/+1036
|
* added rpcclient programLuke Leighton1998-09-256-0/+2006