summaryrefslogtreecommitdiff
path: root/source4/lib/registry/rpc.c
AgeCommit message (Collapse)AuthorFilesLines
2011-06-06s4-modules Remove lp_ctx from init functions that no longer need itAndrew Bartlett1-1/+1
Now that we don't allow the smb.conf to change the modules dir, many functions that simply load modules or initialise a subsytem that may load modules no longer need an lp_ctx. Andrew Bartlett
2010-11-27s4:lib/registry/rpc.c - remove a duplicate assignmentMatthias Dieter Wallnöfer1-1/+0
2010-07-01s4:registry - on key add operations we have to handle with paths not always ↵Matthias Dieter Wallnöfer1-2/+2
only a name Recursive key generations are allowed.
2010-06-20s4:registry/rpc.c - fix Solaris warnings by castsMatthias Dieter Wallnöfer1-4/+4
2010-03-22s4:registry - add more "W_ERROR_HAVE_NO_MEMORY" invocations (on talloc'ed stuff)Matthias Dieter Wallnöfer1-0/+3
2010-03-22s4:registry - adaptions for "add memory contexts for delete value/key functions"Matthias Dieter Wallnöfer1-4/+2
2010-03-22s4:registry - "RPC backend" - use "talloc_steal" and not "talloc_reference"Matthias Dieter Wallnöfer1-4/+4
No need to create additional references but we need to assign the strings to the right context.
2010-03-15s4:registry - rpc - don't crash when communication partner isn't availableMatthias Dieter Wallnöfer1-4/+4
2010-03-12s4:lib/registry/rpc: convert to use dcerpc_binding_handle stubsStefan Metzmacher1-16/+17
metze
2010-03-11winreg: add winreg_KeyType enum.Günther Deschner1-1/+1
Guenther
2009-01-16winreg: fix winreg_EnumValue callers.Günther Deschner1-1/+1
Guenther
2008-12-29s4:lib/tevent: rename structsStefan Metzmacher1-1/+1
list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
2008-11-02Remove use of global_loadparm during initialization of gensec.Jelmer Vernooij1-1/+1
2008-10-20Revert "s4: fix the build after winreg idl changes."Günther Deschner1-2/+2
This reverts commit 61db229c08a601780da09ee4f2f4f1eb32ec3aa0.
2008-10-20s4: fix the build after winreg idl changes.Günther Deschner1-2/+2
Guenther
2008-10-20Regenerate pidl output.Jelmer Vernooij1-2/+2
2008-10-15s4: fix registry/rpc.c after winreg changes.Günther Deschner1-5/+5
jelmer, can you check if this is ok? Guenther
2008-10-15winreg.idl: Sync ref change from Samba 3.Jelmer Vernooij1-1/+1
2008-09-21Registry client: Remove all conversion helper functionsMatthias Dieter Wallnöfer1-44/+17
2008-09-21Registry client library: Remove two elementar conversion functionsMatthias Dieter Wallnöfer1-26/+4
2008-09-21Registry client: Implement the "winreg_QueryValue" callMatthias Dieter Wallnöfer1-0/+48
This is needed for the registry patchfile library
2008-09-21Registry client library: Use "talloc_zero" to avoid uninitialized valuesMatthias Dieter Wallnöfer1-3/+2
2008-09-21Registry client library: Fixes the creation of new keysMatthias Dieter Wallnöfer1-1/+1
Giving the right permissions
2008-09-21Registry client library: Fix some buffer problemsMatthias Dieter Wallnöfer1-5/+9
This buffer maximum values are used in Windows (2000), so I take them also for SAMBA 4.
2008-09-21Registry client library: Various fixup's and correctionsMatthias Dieter Wallnöfer1-63/+64
I reverted the change with the string conversions because they aren't needed and included many fixup's and improvements in the code. We should be able now to connect to a Windows WINREG server without a problem.
2008-09-21Registry client: Various cleanups and charset conversionsMatthias Dieter Wallnöfer1-66/+125
This patch contains various changes to the "rpc.c" file to clean it up and introduces the right string charset conversions (UNIX <-> UTF16).
2008-01-07r26689: registry: Return max_subkeynamelen, max_valnamelen and ↵Jelmer Vernooij1-5/+18
max_valbufsize in getkeyinfo(). (This used to be commit b06896d2378e536f5044dbe500a5232a89d6d0b5)
2008-01-07r26688: Fix listing remote predefined keys and subkeys. This fixes bug 3431.Jelmer Vernooij1-30/+59
(This used to be commit 846876ad32dc86fe7c367db084e76c670c61b389)
2007-12-21r26451: Janitorial: fix warnings in lib/registry/Kai Blin1-1/+1
This does not fix the discarded qualifier warnings in tests, as the test data is currently passed as const. Jelmer wants to provide a test function that passes non-const test data, thus allowing for a cleaner way to fix those warnings. (This used to be commit 46dfa63d4f7381c5c6ce3f4b8b0bd9aa9e16950c)
2007-12-21r26327: Explicit loadparm_context for RPC client functions.Jelmer Vernooij1-1/+2
(This used to be commit eeb2251d22b3d6e0379444a73af69d1014692b07)
2007-10-10r25544: Cleanup some more indents in lib/registry.Günther Deschner1-86/+89
Guenther (This used to be commit 0d9826dc54057db2cfebcb806e5442c4dcf60daa)
2007-10-10r24718: Fix some compiler warnings.Jelmer Vernooij1-4/+13
(This used to be commit 08f7389ab7312d350e056b1ba98da86d80944424)
2007-10-10r24667: Finally merge the registry improvements that Wilco Baan Hofman and I ↵Jelmer Vernooij1-0/+399
have been working on for at least half a year now. Contains the following improvements: * proper layering (finally!) for the registry library. Distinction is now made between 'real' backends (local, remote, wine, etc) and the low-level hive backends (regf, creg, ldb, ...) that are only used by the local registry backend * tests for all important hive and registry operations * re-enable RPC-WINREG tests (still needs more work though, as some return values aren't checked yet) * write support for REGF files * dir backend now supports setting/reading values, creating keys * support for storing security descriptors * remove CREG backend as it was incomplete, didn't match the data model and wasn't used at all anyway * support for parsing ADM files as used by the policy editor (see lib/policy) * support for parsing PREG files (format used by .POL files) * new streaming interface for registry diffs (improves speed and memory usage for regdiff/regpatch significantly) ... and fixes a large number of bugs in the registry code (This used to be commit 7a1eec6358bc863dfc671c542b7185d3e39d7b5a)