Andrew Bartlett
a772797a38
librpc/idr Use the Samba3 notify.idl in common.
...
The extra fields in the structure that Samba4 does not use should not
bother it.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
2011-06-09 12:40:08 +02:00
Andrew Bartlett
d057116cc2
server_id.idl: Bring server_id.idl in common
...
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
2011-06-09 12:40:08 +02:00
Andrew Bartlett
174893c312
s3-server_id change pid to hyper
...
This matches Samba4's server_id.
Signed-off-by: Andrew Tridgell <tridge@samba.org>
2011-06-09 12:40:08 +02:00
Andrew Bartlett
cc3b75b807
s3-server_id Add task_id to server_id to match Samba4
...
This will allow this structure to be shared, and allow us to create a
common messaging system between all Samba processes. Samba4 uses the
task_id to indicate the different tasks within a single unix process.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
2011-06-09 12:40:08 +02:00
Christian Ambach
df650fa8cf
s3:smbd remove unused code
...
in the early CTDB days, the RELEASE_IP message was defined
and some code was added to react on such a message to make
smbd exit if the IP address it was using for the server socket
is removed by CTDB.
Later, it was discovered that we need to stop smbd immediately
and logic was added to ctdb_conn to call release_ip() without
going through the messaging system.
So this code is not used and can be removed
Autobuild-User: Christian Ambach <ambi@samba.org>
Autobuild-Date: Fri May 20 16:18:24 CEST 2011 on sn-devel-104
2011-05-20 16:18:24 +02:00
Volker Lendecke
a671885f49
s3: Add wbint_Sids2UnixIDs idl & implementation
...
Signed-off-by: Jeremy Allison <jra@samba.org>
2011-04-13 14:13:25 -07:00
Volker Lendecke
091fd0f0f7
s3: Add wbint_LookupSids
...
This will be called from wb_lookupsids to query remote DCs via lsa
Signed-off-by: Jeremy Allison <jra@samba.org>
2011-04-13 14:13:24 -07:00
Gregor Beck
58081884f7
s3: smbcontrol to notify smbd about idmap changes
...
Autobuild-User: Michael Adam <obnox@samba.org>
Autobuild-Date: Mon Feb 28 14:07:23 CET 2011 on sn-devel-104
2011-02-28 14:07:23 +01:00
Andrew Tridgell
41b1f97943
s3-build: allow waf build of s3 IDL files from any top directory
...
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
2011-02-18 15:09:46 +11:00
Günther Deschner
6840549123
s3: add server_id.idl and use only autogenerated code.
...
Volker, Tridge and other clustering gurus, please check.
It is ok to get rid of ifdef CLUSTER_SUPPORT here, right ?
Why was unique_id not marshalled at all ?
Guenther
2011-02-17 16:02:19 +01:00
Günther Deschner
e34ba447ec
s3-librpc: move server_id marshalling to own helper file.
...
(in preparation of merging struct server_id).
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Wed Feb 16 00:02:33 CET 2011 on sn-devel-104
2011-02-16 00:02:33 +01:00
Günther Deschner
ad0a3185ce
librpc: move preg.idl to main directory.
...
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Thu Feb 10 13:56:49 CET 2011 on sn-devel-104
2011-02-10 13:56:49 +01:00
Günther Deschner
fdd4d56405
s3: give ../librpc/ndr/util.c its own header.
...
Guenther
2011-02-10 12:58:06 +01:00
Günther Deschner
885887ac1b
s3-waf: no need to call pidl with --samba3-ndr-client anymore.
...
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Wed Feb 2 21:38:23 CET 2011 on sn-devel-104
2011-02-02 21:38:23 +01:00
Günther Deschner
c9f4fad75c
idl: add file_id idl.
...
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Tue Jan 25 12:27:00 CET 2011 on sn-devel-104
2011-01-25 12:27:00 +01:00
David Disseldorp
0b188e7784
s3-printing: Initiate pcap reload from parent smbd
...
Since commit 7022554
, smbds share a printcap cache (printer_list.tdb),
therefore ordering of events between smbd processes is important when
updating printcap cache information. Consider the following two process
example:
1) smbd1 receives HUP or printcap cache time expiry
2) smbd1 checks whether pcap needs refresh, it does
3) smbd1 marks pcap as refreshed
4) smbd1 forks child1 to obtain cups printer info
5) smbd2 receives HUP or printcap cache time expiry
6) smbd2 checks whether pcap needs refresh, it does not (due to step 3)
7) smbd2 reloads printer shares prior to child1 completion (stale pcap)
8) child1 completion, pcap cache (printer_list.tdb) is updated by smbd1
9) smbd1 reloads printer shares based on new pcap information
In this case both smbd1 and smbd2 are reliant on the pcap update
performed on child1 completion.
The prior commit "reload shares after pcap cache fill" ensures that
smbd1 only reloads printer shares following pcap update, however smbd2
continues to present shares based on stale pcap data.
This commit addresses the above problem by driving pcap cache and
printer share updates from the parent smbd process.
1) smbd0 (parent) receives a HUP or printcap cache time expiry
2) smbd0 forks child0 to obtain cups printer info
3) child0 completion, pcap cache (printer_list.tdb) is updated by smbd0
4) smbd0 reloads printer shares
5) smbd0 notifies child smbds of pcap update via message_send_all()
6) child smbds read fresh pcap data and reload printer shares
This architecture has the additional advantage that only a single
process (the parent smbd) requests printer information from the printcap
backend.
Use time_mono in housekeeping functions As suggested by Björn Jacke.
2011-01-07 15:37:39 -08:00
Volker Lendecke
ab1b857f58
s3: Fix bug 7842: WINBIND_LOOKUPRIDS does not return the proper domain name
...
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Mon Dec 6 21:18:07 CET 2010 on sn-devel-104
2010-12-06 21:18:07 +01:00
Volker Lendecke
bad98e37e7
s3: Add "smbcontrol winbindd ip-dropped <local-ip>"
...
This is supposed to improve the winbind reconnect time after an ip address
has been moved away from a box. Any kind of HA scenario will benefit from
this, because winbindd does not have to wait for the TCP timeout to kick in
when a local IP address has been dropped and DC replies are not received
anymore.
2010-09-30 14:30:33 +02:00
Günther Deschner
47a7a5830c
libnetapi: deal with NULL data in I_NetLogonControl2().
...
Guenther
2010-09-19 02:47:10 +02:00
Günther Deschner
45d772e0e6
libnetapi: add DOMAIN_CONTROLLER_INFO_FLAGS.
...
Guenther
2010-09-15 08:32:58 +02:00
Andreas Schneider
7644fbdff9
s3-waf: Added missing client option to pidl list for wbint.
2010-08-16 21:40:04 +02:00
Andreas Schneider
1b022d1d3d
s3-waf: Try to fix the idl build.
2010-08-16 21:31:31 +02:00
Michael Adam
3b56f7f6b5
s3:winbind: remove the method REMOVE_MAPPING from winbind's API
...
Michael
2010-08-14 02:10:34 +02:00
Michael Adam
474020b1ae
s3:winbind: remove the method SET_MAPPING from winbind's API
...
Michael
2010-08-14 02:10:33 +02:00
Michael Adam
66e67c1bad
s3:winbind: remove SET_HWM from winbind's API.
2010-08-14 02:10:31 +02:00
Günther Deschner
385adcce73
s3-libnet_join: add ads.h as helper header to IDL.
...
Guenther
2010-08-05 00:32:02 +02:00
Günther Deschner
5f92bd863c
s3-registry: add preg.idl.
...
Guenther
2010-07-07 15:27:04 +02:00
Günther Deschner
6ab9eaf90f
s3-notify: add MS-CIFS 2.2.7.4.2 FILE_NOTIFY_INFORMATION to IDL.
...
Guenther
2010-07-07 13:52:18 +02:00
Günther Deschner
eb634e8c7f
s3-libnet_join: small IDL enhancement.
...
Guenther
2010-07-01 21:19:52 +02:00
Günther Deschner
60079f59b0
s3-idl: fix some missing dependencies to other IDL files.
...
Guenther
2010-05-28 02:49:36 +02:00
Kai Blin
b6c5d5de37
s3-waf: Fix up PIDL includes.
...
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
2010-05-20 22:16:15 +02:00
Stefan Metzmacher
5556deee7a
s3-waf: Add autogeneration with PIDL
2010-05-20 22:16:15 +02:00
Andrew Bartlett
864a95fd9c
s3:winbind use no_srv_register to avoid needing rpc_srv_register
...
This pidl attribute avoids the need for this dummy function, which
helps s3compat.
Andrew Bartlett
Signed-off-by: Günther Deschner <gd@samba.org>
2010-05-18 17:17:43 +02:00
Günther Deschner
cc46f4a319
s3-libnetjoin: omit admin password in generated ndr_print function.
...
Guenther
2010-05-04 16:31:34 +02:00
Volker Lendecke
4c1c3f2549
s3: Implement global locks in a g_lock tdb
...
This is the basis to implement global locks in ctdb without depending on a
shared file system. The initial goal is to make ctdb persistent transactions
deterministic without too many timeouts.
2010-02-12 23:12:09 +01:00
Volker Lendecke
9b6b01aab6
s3:winbind: Add a lower-cost alternative to wbinfo -t: wbinfo --ping-dc
...
This just does a NULL RPC call through an existing NETLOGON connection. If
someone knows an operation that "just works" and does not return NOT_SUPPORTED,
please tell me :-)
2009-12-21 23:23:52 +01:00
Günther Deschner
4d0fca4472
s3-winbind: properly include netlogon.idl in wbint.idl.
...
Guenther
2009-11-26 19:21:10 +01:00
Günther Deschner
e92e33238c
s3: add secrets.idl.
...
Guenther
2009-10-29 10:49:35 +01:00
Günther Deschner
8bd4378ff8
s3-libnetapi: add I_NetLogonControl{2} to IDL.
...
Guenther
2009-10-16 10:50:27 +02:00
Günther Deschner
a3306e352d
s3-winbindd: add wbint_ChangeMachineAccount implementation.
...
Guenther
2009-10-13 12:42:44 +02:00
Günther Deschner
cd82d4ba56
s3: add perfcount idl and generated files.
...
Guenther
2009-10-01 12:19:43 +02:00
Volker Lendecke
04ea250aeb
s3:winbind: Convert WINBINDD_SET_HWM to the new API
2009-09-07 01:28:32 +02:00
Volker Lendecke
4ad330d522
s3:winbind: Convert WINBINDD_REMOVE_MAPPING to the new API
2009-09-07 01:28:32 +02:00
Volker Lendecke
7159060450
s3:winbind: Convert WINBINDD_SET_MAPPING to the new API
2009-09-07 01:28:32 +02:00
Volker Lendecke
d9b7fd59b0
s3:winbind: Convert WINBINDD_CHECK_MACHACC to the new API
2009-09-07 01:28:32 +02:00
Volker Lendecke
0cae043b0c
w3:winbind: Convert WINBINDD_ALLOCATE_GID to the new API
2009-08-30 09:48:28 +02:00
Volker Lendecke
9e7c6f12fd
w3:winbind: Convert WINBINDD_ALLOCATE_UID to the new API
2009-08-30 09:48:28 +02:00
Volker Lendecke
2555c12bce
s3:winbind: Add async QueryGroupList
2009-08-29 19:42:27 +02:00
Volker Lendecke
50d9fb42fc
w3:winbind: Convert WINBINDD_LOOKUPRIDS to the new API
2009-08-29 19:42:26 +02:00
Volker Lendecke
7579f0fb17
s3:winbind: Add an async dsgetdcname call
2009-08-29 19:42:26 +02:00
Volker Lendecke
c325ba89cf
s3:winbind: Add async query_user_list
2009-08-29 19:42:26 +02:00
Volker Lendecke
58feaa7947
s3:winbind: Rename wbint_GroupMembers to wbint_Principals
2009-08-29 10:44:13 +02:00
Volker Lendecke
ffd9d41be9
s3:winbind: Rename wbint_GroupMember to wbint_Principal
2009-08-29 10:44:12 +02:00
Volker Lendecke
8a683f4896
s3:winbind: Add async wb_group_members
2009-08-16 12:38:19 +02:00
Volker Lendecke
1d110e0ef6
s3:winbind: Add async wb_seqnum
2009-08-16 10:38:24 +02:00
Volker Lendecke
1dc1ac0051
s3:winbind: Add async wb_lookupusergroups
2009-08-05 03:21:25 -04:00
Volker Lendecke
ce42ea3ab8
s3:winbind: Add async wb_lookupuseraliases
2009-08-05 03:21:24 -04:00
Volker Lendecke
7077492778
s3:winbind: Add async wb_queryuser
2009-08-05 03:21:22 -04:00
Volker Lendecke
292f3f896f
s3:winbind: Add async wb_gid2sid
2009-08-05 03:21:22 -04:00
Volker Lendecke
3eff8e93e2
s3:winbind: Add async wb_uid2sid
2009-08-05 03:21:21 -04:00
Volker Lendecke
153ae58d7d
s3:winbind: Add async wb_sid2gid
2009-08-05 03:21:21 -04:00
Volker Lendecke
ea286fed7a
s3:winbind: Add async wb_sid2uid
2009-08-05 03:21:21 -04:00
Volker Lendecke
a541677077
s3:winbind: Add async wb_lookupname
2009-08-05 03:21:20 -04:00
Volker Lendecke
bb359c780a
s3:winbind: Add async wb_lookupsid
2009-08-05 03:21:20 -04:00
Volker Lendecke
6cf3db9149
s3:winbind: Add NDR-based parent-child communication to winbind
2009-08-05 03:21:19 -04:00
Jim McDonough
7930f15f5d
Don't require "Modify property" perms to unjoin bug #6481 )
...
"net ads leave" stopped working when "modify properties"
permissions were not granted (meaning you had to be allowed
to disable the account that you were about to delete).
Libnetapi should not delete machine accounts, as this does not
happen on win32. The WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE flag
really means "disable" (both in practice and docs).
However, to keep the functionality in "net ads leave", we
will still try to do the delete. If this fails, we try
to do the disable.
Additionally, it is possible in windows to not disable or
delete the account, but just tell the local machine that it
is no longer in the account. libnet can now do this as well.
2009-06-19 13:46:07 -04:00
Günther Deschner
e272acf484
s3-netapi: add NetShutdownInit and NetShutdownAbort.
...
I know, they don't exist as such calls on windows but having them in
libnetapi.so would be very handy.
Guenther
2009-05-14 14:18:26 +02:00
Jeremy Allison
6fc8ed7b1f
Fix IDL licensing file that got missed when IDL files were moved.
...
Jeremy.
2009-04-16 12:09:16 -07:00
Volker Lendecke
32a36e4703
Add notify_onelevel.tdb
...
This optimizes non-recursive notifys. For non-recursive notifies we can use a
per-directory file-id indexed notify record. This matters for the Windows
Explorer and IIS cases which do not use recursive notifies. In these cases, we
do not have to shuffle around the whole notify record on every change.
For the cluster case, this improves correctness of the notifies, ctdb only
distributes the tdb seqnum once a second, so we can lose notifies.
2009-04-16 15:07:06 +02:00
Steven Danneman
b329ea1cf3
s3: Modifications to generic notify structures to allow implementation of OneFS notify.
...
The OneFS kernel based change notify system takes an fd of the directory
to watch in it's initialization syscall. Since we already have this
directory open, this commit plumbs that fd down to the VFS layer via the
notify_entry struct.
We also need to know if the watch is taken out on a snapshot directory.
The full file_id struct is also passed down to make this determination.
The file_id marshalling wrappers are hand written here, but should
eventually be auto-generated by moving the struct file_id into the idl.
2009-02-20 14:10:30 -08:00
Günther Deschner
3df528f2d1
netapi: add more SERVER_INFO_X levels.
...
Guenther
2009-02-06 11:10:36 +01:00
Jelmer Vernooij
0f04beff33
Rename dom_sid.idl -> server_id.idl (since it no longer actually contains the dom_sid). No longer include it from security.idl.
2008-12-16 15:36:18 +01:00
Günther Deschner
8f23dff45e
s3-samr: remove old samr.idl file.
...
Guenther
2008-11-10 21:46:31 +01:00
Günther Deschner
94b7db1fb4
s4-samr: merge samr_RidToSid from s3 idl. (fixme: python)
...
Guenther
2008-11-10 21:46:27 +01:00
Günther Deschner
a4c24b4d30
s3-samr-idl: cleanup.
...
Guenther
2008-11-10 21:46:25 +01:00
Stefan Metzmacher
0d25517723
s3: security.idl: split of dom_sid stuff into dom_sid.idl
...
And use the toplevel ndr_sec_helper.c
metze
2008-11-08 08:02:26 +01:00
Günther Deschner
7ac5660d2c
s3-samr-idl: fix samr_QueryUserInfo2.
...
Guenther
2008-11-05 15:10:01 +01:00
Günther Deschner
abd2139b42
s3-samr-idl: fix samr_ValidatePassword.
...
Guenther
2008-11-05 15:09:50 +01:00
Günther Deschner
0f9410e806
s3-samr-idl: add Alias Object specific access rights.
...
Guenther
2008-10-31 21:14:27 +01:00
Günther Deschner
673ba71658
s3-samr-idl: add Group Object specific access rights.
...
Guenther
2008-10-31 21:14:27 +01:00
Günther Deschner
04c2204e46
s3-samr-idl: add Domain Object specific access rights.
...
Guenther
2008-10-31 21:14:26 +01:00
Günther Deschner
3913366c9a
s3-samr-idl: add User Object specific access rights.
...
Guenther
2008-10-31 21:14:26 +01:00
Günther Deschner
65eca73272
s3-samr-idl: add SAM server specific access rights.
...
Guenther
2008-10-31 21:14:26 +01:00
Günther Deschner
767202e668
srvsvc: share srvsvc idl between s3 and s4.
...
Guenther
2008-10-31 02:44:35 +01:00
Günther Deschner
d2cc4e63c5
s4-srvsvc: merge srvsvc_NetTransportEnum from s3 idl.
...
Guenther
2008-10-31 02:44:32 +01:00
Günther Deschner
8859e9a904
s4-srvsvc: merge srvsvc_NetTransportDel from s3 idl.
...
Guenther
2008-10-31 02:44:31 +01:00
Günther Deschner
70c9cb4d9b
s4-srvsvc: merge srvsvc_NetServerStatisticsGet from s3 idl.
...
Guenther
2008-10-31 02:44:31 +01:00
Günther Deschner
bb4894d48b
s3-srvsvc-idl: fix srvsvc_NetCharDevQEnum.
...
Guenther
2008-10-31 02:44:28 +01:00
Günther Deschner
7cd5f73314
s3-srvsvc-idl: fix srvsvc_NetCharDevEnum.
...
Guenther
2008-10-31 02:44:27 +01:00
Günther Deschner
622650597c
s3-srvsvc-idl: add missing field to srvsvc_SrvInfo402/403.
...
Guenther
2008-10-31 02:44:27 +01:00
Günther Deschner
ca4cd04bed
s3-srvsvc-idl: merge STR_LEN4 removal from s4.
...
Guenther
2008-10-31 02:44:27 +01:00
Günther Deschner
8be9cefd98
netlogon: merge netlogon.idl between s3 and s4.
...
Guenther
2008-10-29 08:57:53 +01:00
Günther Deschner
8e4c691c0a
s4-netlogon: merge netr_ServerAuthenticate{2,3} from s3 idl.
...
Guenther
2008-10-29 08:57:51 +01:00
Günther Deschner
ef37351f18
s4-netlogon: merge netr_DatabaseSync2 from s3 idl.
...
Guenther
2008-10-29 08:57:51 +01:00
Günther Deschner
cbc0b63a77
s4-netlogon: merge netr_DatabaseSync from s3 idl.
...
Guenther
2008-10-29 08:57:51 +01:00
Günther Deschner
f285af6367
s4-netlogon: merge netr_LogonSamLogon{Ex,WithFlags} from s3 idl.
...
Guenther
2008-10-29 08:57:31 +01:00
Günther Deschner
bb3836a67f
s4-smbtorture: fix test_LogonUasLogon.
...
Guenther
2008-10-28 23:40:44 +01:00
Günther Deschner
98f8f89164
s4-netlogon: merge misc stuff.
...
Guenther
2008-10-28 23:37:40 +01:00
Günther Deschner
d04131c8ec
idl: share lsa.idl between s3 and s4.
...
Guenther
2008-10-27 19:33:23 +01:00
Günther Deschner
992c03a192
s4-lsa: merge lsa_LookupSids/{2,3} from s3 lsa idl.
...
Guenther
2008-10-27 19:33:23 +01:00
Günther Deschner
8bcc939a8c
s4-lsa: merge lsa_LookupPrivName from s3 lsa idl.
...
Guenther
2008-10-27 19:33:22 +01:00
Günther Deschner
ea6b4865ea
s4-lsa: merge lsa_EnumPrivsAccount from s3 lsa idl.
...
Guenther
2008-10-27 19:33:22 +01:00
Günther Deschner
95c69caef6
s4-lsa: merge lsa_LookupPrivDisplayName from s3 lsa idl.
...
Guenther
2008-10-27 19:33:22 +01:00
Günther Deschner
6131c0d888
s4-lsa: merge lsa_EnumTrustDom from s3 lsa idl.
...
Guenther
2008-10-27 19:33:22 +01:00
Günther Deschner
7e19dd6a0a
s4-lsa: merge lsa_EnumAccounts from s3 lsa idl.
...
Guenther
2008-10-27 19:33:22 +01:00
Günther Deschner
fb38705e42
s4-lsa: merge lsa_EnumPrivs from s3 lsa idl.
...
Guenther
2008-10-27 19:33:22 +01:00
Günther Deschner
4ee7b58e0a
s4-lsa: merge lsa_QuerySecurity from s3 lsa idl.
...
Guenther
2008-10-27 19:33:21 +01:00
Günther Deschner
eb3c826f7b
s3-netlogon-idl: fix IDL for netr_DsrGetDcSiteCoverageW.
...
Guenther
2008-10-27 14:29:04 +01:00
Günther Deschner
bb36f3a342
idl: merge from s4 lsa.idl to s3.
...
Guenther
2008-10-20 22:09:07 +02:00
Jelmer Vernooij
d78f3be238
Merge branch 'master' of ssh://git.samba.org/data/git/samba into crypt
2008-10-20 12:19:57 +02:00
Jelmer Vernooij
5b52964b15
Share winreg.idl.
2008-10-20 11:53:20 +02:00
Günther Deschner
640847b4fc
s3: forgot to remove old copy of krb5pac.idl.
...
Guenther
2008-10-20 11:21:45 +02:00
Günther Deschner
f34b6bfe34
idl: share drsblobs idl.
...
Guenther
2008-10-18 23:54:49 +02:00
Günther Deschner
d413e1f40a
drsuapi: share drsuapi idl and helper code.
...
Guenther
2008-10-18 23:25:48 +02:00
Günther Deschner
82aeb52ec0
s3-winreg: merge from s4 winreg idl.
...
Guenther
2008-10-17 23:02:02 +02:00
Günther Deschner
d2a007b629
s3: merge from s4 drsuapi.idl.
...
Guenther
2008-10-17 10:54:01 +02:00
Günther Deschner
04a676f9a4
s3-idl: merge from s4 drsuapi.idl.
...
Guenther
2008-10-16 14:00:42 +02:00
Günther Deschner
d242491488
idl: finally fully share nbt.idl in s3 and s4.
...
Guenther
2008-10-15 21:44:39 +02:00
Günther Deschner
a1b7b6d5b4
idl: more lsa.idl merges.
...
Guenther
2008-10-15 20:46:35 +02:00
Günther Deschner
f64f444c96
s3: merge some more lsa bits from s4 idl.
...
Guenther
2008-10-15 19:44:40 +02:00
Jelmer Vernooij
ada0e343b2
Sync parameter names with samba 3.
2008-10-15 17:38:51 +02:00
Jelmer Vernooij
fed4658c1b
winreg.idl: Sync ref change from Samba 3.
2008-10-15 17:34:55 +02:00
Günther Deschner
a26dde5b1c
s3: merge from s4 samr.idl.
...
Guenther
2008-10-15 17:11:27 +02:00
Jelmer Vernooij
d210393639
lsa.idl: Sync a couple more constants from Samba 4.
2008-10-15 16:54:01 +02:00
Jelmer Vernooij
5390dc0d24
Share wkssvc.idl.
2008-10-15 16:48:53 +02:00
Jelmer Vernooij
85c36cb2cd
Share eventlog.idl.
2008-10-15 16:37:27 +02:00
Jelmer Vernooij
5d408ccf83
Rename reboot -> do_reboot since the first is a reserved name on FreeBSD.
2008-10-15 16:25:06 +02:00
Jelmer Vernooij
ec63a6f5ad
Merge branch 'master' of git://git.samba.org/samba
2008-10-15 16:16:01 +02:00
Jelmer Vernooij
3214fb0734
Add [public] and [todo] as in Samba 4.
2008-10-15 16:15:20 +02:00
Günther Deschner
9b162bd3a9
idl: merge netlogon IDL between s3 and s4 wrt LogonSamLogon.
...
Guenther
2008-10-15 16:14:19 +02:00
Jelmer Vernooij
881b36f4cf
Share initshutdown.idl.
2008-10-15 16:13:02 +02:00
Jelmer Vernooij
0c840bd8d2
Share xattr implementation.
2008-10-15 15:57:39 +02:00
Jelmer Vernooij
760dfa76d9
Share epmapper.
2008-10-15 15:31:49 +02:00
Günther Deschner
94d7e52dd8
idl: more netlogon merges between s3 and s4.
...
Guenther
2008-10-15 15:14:00 +02:00
Günther Deschner
f0fd834141
share ntsvcs.idl.
...
Guenther
2008-10-15 12:03:12 +02:00
Günther Deschner
fe46368e09
move svcctl to main idl directory.
...
Guenther
2008-10-15 11:37:42 +02:00
Jelmer Vernooij
4695504a6c
Share security.idl.
2008-10-15 02:33:16 +02:00
Jelmer Vernooij
f75b460814
Share misc.idl.
2008-10-15 02:08:24 +02:00
Jelmer Vernooij
4f6a4b5510
Share idl_types.h.
2008-10-15 01:53:09 +02:00
Jelmer Vernooij
bd8998226c
Sync misc.idl with Samba 4.
2008-10-15 01:33:47 +02:00
Jelmer Vernooij
45f97c4614
Move shared DCE/RPC IDL files to root IDL dir.
2008-10-15 01:23:36 +02:00
Jelmer Vernooij
4577fb5a3b
Remove unused types.
2008-10-14 15:57:03 +02:00
Jelmer Vernooij
3d6f759d08
Import new enum values.
2008-10-13 14:09:10 +02:00
Volker Lendecke
8641b54a73
Attempt to fix the build on IRIX
...
Under irix, "sa_family" is a #define to sa_union.sa_generic.sa_family2
2008-10-02 03:45:37 +02:00
Günther Deschner
a877745dc7
s3-nbt: full merge of s4 nbt idl.
...
Guenther
2008-09-24 03:34:22 +02:00
Günther Deschner
d62bc0e845
s3-nbt: start merging from samba4 idl.
...
Guenther
2008-09-23 23:19:54 +02:00
Günther Deschner
83c042583b
s3-nbt: refer to ../libcli/nbt in nbt.idl.
...
Guenther
2008-09-23 09:37:24 +02:00
Günther Deschner
9421ecac33
s3-nbt: fix nbt.idl in order to use shared nbt helper.
...
Guenther
2008-09-23 09:37:23 +02:00
Günther Deschner
bd7d2fa017
netapi: add more fields to USER_INFO_X.
...
Guenther
2008-09-22 19:36:53 +02:00
Jelmer Vernooij
f5b134fb46
Sync more interface descriptions between Samba 3 and Samba 4.
2008-09-17 15:43:04 +02:00