summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2009-04-11Fix a memleak in an unlikely error path in change_notify_create()Volker Lendecke1-0/+1
2009-04-11Use talloc_tos() for a temp convert_string_allocate()Volker Lendecke1-3/+3
2009-04-10Link in the threads functions, not yet used.Jeremy Allison2-1/+4
Jeremy.
2009-04-10s4:rpc_server: split out the parsing of the ncacn_packet from analyzing of ↵Stefan Metzmacher1-34/+55
the content metze
2009-04-10s4:rpc_server: report available output for all repliesStefan Metzmacher1-0/+24
metze
2009-04-10socket_wrapper: fix crash bug in swrap_readv/writevStefan Metzmacher1-4/+10
metze
2009-04-10s3-spoolss: implement dummy _spoolss_AddPort().Günther Deschner1-11/+12
Guenther
2009-04-10s3-spoolss: add support for level 8 in _spoolss_GetPrinter().Günther Deschner1-0/+37
Guenther
2009-04-10s3-eventlog: implement _eventlog_FlushEventLog().Günther Deschner1-6/+15
Guenther
2009-04-10s3-eventlog: implement _eventlog_GetLogInformation().Günther Deschner1-6/+44
Guenther
2009-04-10s3: re-run make samba3-idl.Günther Deschner3-1/+34
Guenther
2009-04-10eventlog: make EVENTLOG_FULL_INFORMATION a public struct.Günther Deschner1-1/+1
Guenther
2009-04-09Merge branch 'master' of ssh://jra@git.samba.org/data/git/sambaJeremy Allison230-21346/+12903
2009-04-09Fix bug #6254 - PUT/GET produces an error in IPv6 to a smb-server(3.3) has ↵Jeremy Allison1-18/+23
parameter "msdfs root = yes" This was broken by the refactoring around create_file(). MSDFS pathname processing must be done FIRST. MSDFS pathnames containing IPv6 addresses can be confused with NTFS stream names (they contain ":" characters. Jeremy.
2009-04-10s3-selftest: enable the RPC-NTSVCS torture test against Samba3.Günther Deschner1-1/+1
Guenther
2009-04-10s3-ntsvcs: fix _PNP_GetDeviceList and _PNP_GetDeviceListSize.Günther Deschner1-17/+24
Guenther
2009-04-10s4-smbtorture: perform the ntsvcs devicelist tests against the Spooler service.Günther Deschner1-18/+38
Guenther
2009-04-10s3-rpcclient: allow to set flags in cmd_ntsvcs_get_dev_list().Günther Deschner1-4/+8
Guenther
2009-04-10error-codes: add WERR_CM_INVALID_POINTER.Günther Deschner1-0/+1
Guenther
2009-04-10s3: re-run make samba3-idl.Günther Deschner3-6/+51
Guenther
2009-04-10ntsvcs: add PNP_GetIdListFlags flags.Günther Deschner1-2/+17
Guenther
2009-04-09s3-svcctl: minor fix for _svcctl_EnumDependentServicesW().Günther Deschner1-0/+9
Guenther
2009-04-09s4-smbtorture: add test_EnumDependentServicesW() to RPC-SVCCTL.Günther Deschner1-1/+66
Guenther
2009-04-09s3: re-run make samba3-idl.Günther Deschner4-12/+12
Guenther
2009-04-09svcctl: use svcctl_ServiceState type for dependent calls in IDL.Günther Deschner1-2/+2
Guenther
2009-04-09s3-svcctl: Fix invalid buffer memset in _svcctl_QueryServiceObjectSecurity().Günther Deschner1-1/+0
Found by torture-test. Guenther
2009-04-09s4-smbtorture: add test_QueryServiceObjectSecurity() to RPC-SVCCTL test.Günther Deschner1-0/+55
Guenther
2009-04-09s3-svcctl: Fix _svcctl_Set/GetServiceObjectSecurity after IDL changes.Günther Deschner1-2/+3
Guenther
2009-04-09s3: re-run make samba3-idl.Günther Deschner5-40/+40
Guenther
2009-04-09svcctl: Fix IDL for svcctl_QueryServiceObjectSecurity and Set call.Günther Deschner1-6/+6
Guenther
2009-04-09s4-smbtorture: add test_QueryServiceConfigW() to RPC-SVCCTL.Günther Deschner1-0/+44
Guenther
2009-04-09s4-smbtorture: add test_QueryServiceStatus() to RPC-SVCCTL.Günther Deschner1-0/+32
Guenther
2009-04-09Merge branch 'wspp-schema'Andrew Tridgell36-16388/+6829
2009-04-09enable testing of possibleInferiors generationAndrew Tridgell1-0/+1
2009-04-09make the memory usage of possibleInferiors much more efficientAndrew Tridgell1-20/+31
2009-04-09added _const versions of some of the str_list_*() functionsAndrew Tridgell2-0/+84
These const versions don't copy the strings themselves, which is useful when those strings point at known constant data (into the schema in this case)
2009-04-09we should not be supplying a generated attribute in our schemaAndrew Tridgell1-13/+0
2009-04-09fixed the possibleInferiors calculation so it now passes the testAndrew Tridgell2-27/+28
We are probably still using more memory here than we need to. That needs to be looked at.
2009-04-09slightly nicer output in our possibleInferiors test codeAndrew Tridgell1-2/+2
2009-04-09hook the new possibleInferiors calculation into the schemaAndrew Tridgell1-14/+77
We now generate possibleInferiors at startup, and return it when requested
2009-04-09added str_list_unique() and str_list_show()Andrew Tridgell2-36/+62
I also undid some of the const changes from Andrew, as they didn't in fact resolve the const warnings.
2009-04-08Add the thread functions to top level lib/util.Jeremy Allison3-0/+277
Not yet used, that's the next step. Jeremy.
2009-04-08s3-svcctl: Fix _svcctl_EnumServicesStatusW (again).Günther Deschner1-3/+1
The final plan is to use the same macro based code that we have in spoolss to handle the buffers and calculate the buffer-sizes. Guenther
2009-04-08Remove async_reqVolker Lendecke9-617/+2
2009-04-08Convert cli_push to tevent_reqVolker Lendecke2-77/+66
Metze, please check! Thanks, Volker
2009-04-08Convert cli_pull to tevent_reqVolker Lendecke2-54/+49
2009-04-08s3-net: Fix Bug #5329: add "net rpc service delete/create".Günther Deschner1-0/+204
Patch from Danny Tylman <danny.tylman@insightix.com>. Guenther
2009-04-08Convert rpc_transport_smbd_init to tevent_reqVolker Lendecke2-39/+37
2009-04-08Convert rpc_cli_smbd_conn_init to tevent_reqVolker Lendecke2-44/+41
2009-04-08Convert get_anon_ipc to tevent_reqVolker Lendecke1-40/+35