summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* pidl/idl.yp: fill 'pipe' elements with array and countStefan Metzmacher2011-03-102-32/+80
| | | | metze
* pidl:NDR/Client: skip all functions if pipe elements are usedStefan Metzmacher2011-03-101-0/+18
| | | | | | We don't support pipe at the dcerpc level yet. metze
* pidl:NDR/Client: skip sync functions if pipe elements are usedStefan Metzmacher2011-03-101-0/+34
| | | | metze
* pidl:Python: don't generate functions with pipe elementsStefan Metzmacher2011-03-101-1/+10
| | | | metze
* pidl:Samba3/ClientNDR: don't generate stubs for functions with pipe elementsStefan Metzmacher2011-03-101-0/+11
| | | | metze
* pidl/NDR: add ContainsPipe() functionStefan Metzmacher2011-03-101-1/+15
| | | | metze
* librpc/tools/ndrdump: add support for dcerpc 'pipe' elements in functionsStefan Metzmacher2011-03-101-5/+73
| | | | metze
* librpc/ndr: add ndr_push_pipe_chunk_trailer() and ndr_check_pipe_chunk_trailer()Stefan Metzmacher2011-03-102-0/+36
| | | | metze
* librpc/ndr: add ndr_interface_call_pipeStefan Metzmacher2011-03-101-0/+16
| | | | metze
* pidl/Typelist: add is_fixed_size_scalar()Stefan Metzmacher2011-03-101-2/+16
| | | | metze
* pidl/Typelist: dnsp_name and dnsp_string are scalar referencesStefan Metzmacher2011-03-101-1/+2
| | | | metze
* s4:lib/tls/wscript - exclude known broken GNUTLS releasesMatthias Dieter Wallnöfer2011-03-101-2/+2
| | | | | | | This definitely fixes bug #7218. Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Thu Mar 10 11:58:27 CET 2011 on sn-devel-104
* lib/util/fault.c - "call_backtrace" - no need to have "backtrace_size" as size_tMatthias Dieter Wallnöfer2011-03-101-1/+1
| | | | The function "backtrace" returns an "int".
* s4:extended_dn_store LDB module - use the new request as generic memory contextsMatthias Dieter Wallnöfer2011-03-101-2/+2
| | | | To prevent memory leaks under valgrind.
* s4:repl_meta_data LDB module - always ask manually for the current partition ↵Matthias Dieter Wallnöfer2011-03-101-0/+46
| | | | | | control Otherwise the "partition" LDB module doesn't give it back anymore.
* s4:partition LDB module - the current partition control should only be added ↵Matthias Dieter Wallnöfer2011-03-101-6/+18
| | | | | | | if requested That means if the informations before a request are unknown ("repl_meta_data" LDB module) then an empty control (no data) has to be sent.
* s4:partition LDB module - extended operations - make the initialisation ↵Matthias Dieter Wallnöfer2011-03-101-2/+4
| | | | | | check consistent To the other operations.
* s4:partition LDB module - move the "data" check a bit higherMatthias Dieter Wallnöfer2011-03-101-4/+5
| | | | It can be performed a bit earlier.
* s4:partition LDB module - "partition_replicate" doesn't handle the search ↵Matthias Dieter Wallnöfer2011-03-101-1/+1
| | | | | | requests That is done by "partition_search".
* s4:partition LDB module - "partition_sequence_number" - remove meaningless "if"sMatthias Dieter Wallnöfer2011-03-101-16/+12
| | | | These current partition controls are always added for the two EXOP operations.
* s4:simple_ldap_map LDB module - enhance current partition control checksMatthias Dieter Wallnöfer2011-03-101-3/+7
| | | | | | | Don't stop the server if it hasn't been filled in correctly. An LDB error should be enough. Modified by request of tridge: errorcodes changed to ERR_PROTOCOL_ERROR
* s4:repl_meta_data LDB module - don't remove the partition control twiceMatthias Dieter Wallnöfer2011-03-101-2/+1
| | | | | "controls" is already the controls list which has the partition control removed. It is generated by "ldb_controls_except_specified" in line 378.
* s4:repl_meta_data LDB module - remove the current partition control unless ↵Matthias Dieter Wallnöfer2011-03-101-2/+10
| | | | it was requested
* s4:new_partition LDB module - splitting up an "if" operationMatthias Dieter Wallnöfer2011-03-101-3/+3
| | | | | | | | - let the first "if" in place - uninstantiated partitions are handled by the second "if" (previously they have been handled twice) Has been corrected by request of tridge.
* s4:instancetype LDB module - perform here only the "instanceType" constraint ↵Matthias Dieter Wallnöfer2011-03-101-78/+16
| | | | | | | | checks The boilerplate entries (when this support has been implemented) should be provided by the "new_partition" LDB module. These are for example the deleted object and lost and found container.
* s4:instancetype LDB module - don't impede control requestsMatthias Dieter Wallnöfer2011-03-101-0/+7
|
* s4:instancetype LDB module - use "ldb" pointer for referencing the LDB contextMatthias Dieter Wallnöfer2011-03-101-1/+1
|
* s4:partition LDB module - fill in parent requests for inheriting the flagsMatthias Dieter Wallnöfer2011-03-101-3/+3
| | | | Probably it doesn't matter in this cases but just for consistency.
* ldb:ldb_controls.c - "ldb_save_controls" - allow that "saver" can also be NULLMatthias Dieter Wallnöfer2011-03-101-8/+12
| | | | Suggested by Tridge
* ldb:ldb_controls.c - always allocate enough spaceMatthias Dieter Wallnöfer2011-03-101-13/+27
| | | | | | | | The size for an additional "struct ldb_control" shouldn't hurt and so the excluded control can also be NULL. Added an ending "talloc_realloc" to resize the chunk to the effective needed size (requested by tridge).
* s4:partition LDB module - add some commentsMatthias Dieter Wallnöfer2011-03-101-1/+4
|
* s4:new_partition LDB module - fix commentsMatthias Dieter Wallnöfer2011-03-101-3/+3
|
* s4:partition_init LDB module - fix a typoMatthias Dieter Wallnöfer2011-03-101-1/+1
|
* s4:partition LDB module - fix typoMatthias Dieter Wallnöfer2011-03-101-1/+1
|
* s4:setup/provision - fix an output messageMatthias Dieter Wallnöfer2011-03-101-1/+1
| | | | Mention that Windows 2000 function level is supported as well.
* libwbclient: Add some input checkVolker Lendecke2011-03-101-0/+4
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Thu Mar 10 11:10:30 CET 2011 on sn-devel-104
* libwbclient: Remove a pointless checkVolker Lendecke2011-03-101-1/+2
|
* tevent: change version to 0.9.11tevent-0.9.11Stefan Metzmacher2011-03-102-1/+74
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Thu Mar 10 10:24:49 CET 2011 on sn-devel-104
* tevent/poll: use fde->additional_flags to hold the array indexStefan Metzmacher2011-03-101-17/+6
| | | | metze
* tevent: change tevent_fd->additional_flags to uint64_tStefan Metzmacher2011-03-101-1/+1
| | | | metze
* s4:lib/socket: use sockaddr_in6 in ipv6_tcp_accept()Stefan Metzmacher2011-03-091-1/+1
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Wed Mar 9 14:36:42 CET 2011 on sn-devel-104
* s3-selftest: properly move connect to seal options.Günther Deschner2011-03-091-2/+2
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Mar 9 13:13:06 CET 2011 on sn-devel-104
* s3-selftest: no point in testing smb2 via ncacn_ip_tcp.Günther Deschner2011-03-091-9/+13
| | | | Guenther
* s3-selftest: remove *ncacn_ip_tcp* from knownfail list.Günther Deschner2011-03-091-1/+0
| | | | Guenther
* socket_wrapper: fix handling of addr and addrlenStefan Metzmacher2011-03-091-4/+5
| | | | metze
* s3-rpc_server: handle DCERPC_AUTH_LEVEL_CONNECT in api_pipe_bind_req().Günther Deschner2011-03-091-0/+3
| | | | Guenther
* s4:samba-tool: improve help messages for samba-tool passwordStefan Metzmacher2011-03-091-4/+7
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Wed Mar 9 12:06:53 CET 2011 on sn-devel-104
* libsmbclient: Fix a typoVolker Lendecke2011-03-091-1/+1
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Mar 9 11:19:36 CET 2011 on sn-devel-104
* s3-rpc_server: Remove unused _rpc_ep_register.Andreas Schneider2011-03-091-29/+0
| | | | | Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Wed Mar 9 10:32:32 CET 2011 on sn-devel-104
* s3-rpc_server: Use the new endpoint register functions.Andreas Schneider2011-03-091-14/+14
|