Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-06-10 | source3/libads/ldap_schema.h: fix licence/copyright | Günther Deschner | 1 | -0/+25 | |
Guenther | |||||
2011-06-10 | source3/libads/cldap.h: fix licence/copyright | Günther Deschner | 1 | -0/+27 | |
Guenther | |||||
2011-06-10 | source3/libads/ads_status.h: fix licence/copyright | Günther Deschner | 1 | -0/+22 | |
Guenther | |||||
2011-06-10 | source3/libads/ads_ldap_protos.h: fix licence/copyright | Günther Deschner | 1 | -0/+28 | |
Guenther | |||||
2011-06-09 | s3-param Remove special case for global_myname(), rename to lp_netbios_name() | Andrew Bartlett | 7 | -22/+22 | |
There is no reason this can't be a normal constant string in the loadparm system, now that we have lp_set_cmdline() to handle overrides correctly. Andrew Bartlett | |||||
2011-06-09 | s3-talloc Change TALLOC_MEMDUP() to talloc_memdup() | Andrew Bartlett | 1 | -1/+1 | |
Using the standard macro makes it easier to move code into common, as TALLOC_MEMDUP isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_ZERO_ARRAY() to talloc_zero_array() | Andrew Bartlett | 2 | -6/+6 | |
Using the standard macro makes it easier to move code into common, as TALLOC_ZERO_ARRAY isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_ZERO_P() to talloc_zero() | Andrew Bartlett | 1 | -2/+2 | |
Using the standard macro makes it easier to move code into common, as TALLOC_ZERO_P isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_P() to talloc() | Andrew Bartlett | 1 | -1/+1 | |
Using the standard macro makes it easier to move code into common, as TALLOC_P isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_ARRAY() to talloc_array() | Andrew Bartlett | 6 | -10/+10 | |
Using the standard macro makes it easier to move code into common, as TALLOC_ARRAY isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_REALLOC_ARRAY() to talloc_realloc() | Andrew Bartlett | 2 | -3/+3 | |
Using the standard macro makes it easier to move code into common, as TALLOC_REALLOC_ARRAY isn't standard talloc. Andrew Bartlett | |||||
2011-06-02 | Remove another PATH_MAX. | Jeremy Allison | 1 | -12/+27 | |
Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Jun 2 02:51:06 CEST 2011 on sn-devel-104 | |||||
2011-06-01 | s3-param prepare for some lp_ functions to return const | Andrew Bartlett | 1 | -1/+1 | |
2011-05-31 | s3:libads/ndr: include ../librpc/ndr/libndr.h instead of librpc/ndr/util.h | Michael Adam | 1 | -1/+1 | |
2011-05-31 | s3:libads/kerberos_proto.h: add _LIBADS_KERBEROS_PROTO_H_ guard | Michael Adam | 1 | -0/+5 | |
2011-05-31 | s3:libads/kerberos_proto.h: add GPL/Copyright header | Michael Adam | 1 | -0/+29 | |
2011-05-31 | s3:libads/ads_proto.h: add _LIBADS_ADS_PROTO_H_ guard | Michael Adam | 1 | -0/+5 | |
2011-05-31 | s3:libads/ads_proto.h: add GPL/Copyright header | Michael Adam | 1 | -0/+31 | |
2011-05-18 | s3-lib Replace StrCaseCmp() with strcasecmp_m() | Andrew Bartlett | 2 | -2/+2 | |
strcasecmp_m() never needs to call to talloc, and via next_codepoint() still has an ASCII fast-path bypassing iconv() calls. Andrew Bartlett | |||||
2011-05-06 | s3-includes: no need to globally include libads/ads_status.h. | Günther Deschner | 3 | -0/+7 | |
Guenther | |||||
2011-05-05 | More simple const fixups. | Jeremy Allison | 2 | -8/+8 | |
2011-05-05 | More const fixes for compiler warnings from the waf build. | Jeremy Allison | 1 | -2/+2 | |
2011-05-05 | s3-libads: run minimal_includes.pl. | Günther Deschner | 1 | -2/+0 | |
Guenther | |||||
2011-04-29 | s3-libads Move variables into if (socket_wrapper_dir()) where they are used. | Andrew Bartlett | 1 | -4/+4 | |
2011-04-28 | s3-libads: Use ldap_init_fd() to connect to AD server in socket_wrapper | Andrew Bartlett | 1 | -1/+35 | |
This means that we control the connection setup, don't rely on signals for timeouts and the connection uses socket_wrapper where that is required in our test environment. According to bug reports, this method is also used by curl and other tools, so we are not the first to (ab)use the OpenLDAP libs in this way. It is ONLY enabled for socket_wrapper at this time, as this is the best way to get 'make test' working for S3 winbind tests in an S4 domain. Andrew Bartlett | |||||
2011-04-28 | s3-libads Pass a struct sockaddr_storage to cldap routines | Andrew Bartlett | 3 | -42/+17 | |
This avoids these routines doing a DNS lookup that has already been done, and ensures that the emulated DNS lookup isn't thrown away. Andrew Bartlett | |||||
2011-04-27 | s3-libsmb Use 'resolv:hosts file' as a DNS emulation when specified. | Andrew Bartlett | 1 | -0/+15 | |
This allows make test to operate without making real DNS calls. Andrew Bartlett | |||||
2011-04-27 | s3-libads Don't start a DEBUG with 'time' | Andrew Bartlett | 1 | -1/+1 | |
This strange requirement comes from our subunit test harness. Andrew Bartlett | |||||
2011-04-26 | s3-libads Remove KRB5_DNS_HACK | Andrew Bartlett | 1 | -12/+0 | |
We have winbindd write a custom krb5.conf or use a kdc locator plugin to do this properly now. Andrew Bartlett | |||||
2011-04-26 | libcli/dns Improve dns_hosts_file, using Samba3's struct dns_rr_srv | Andrew Bartlett | 1 | -36/+1 | |
By reworking the 'fake DNS' file to use struct dns_rr_srv it should be possible to emulate that resolver layer as well as the Samba4 sockaddr_storage* based layer. This will then give us a common DNS emulation for 'make test'. Andrew Bartlett | |||||
2011-04-22 | s3: Fix Coverity ID 2336, NULL_RETURNS | Volker Lendecke | 1 | -0/+4 | |
2011-04-20 | libcli/auth Move PAC parsing and verification in common. | Andrew Bartlett | 2 | -320/+3 | |
This uses the source3 PAC code (originally from Samba4) with some small changes to restore functionality needed by the torture tests, and to have a common API. Andrew Bartlett | |||||
2011-04-15 | s3-waf: try to fix the non-ldap-but-krb5 build. | Günther Deschner | 1 | -0/+4 | |
Guenther | |||||
2011-04-13 | s3-rpc_client: add and use rpc_client/rpc_client.h. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-03-31 | s3-libndr: add ../librpc/ndr/libndr.h include in some places. | Günther Deschner | 2 | -0/+2 | |
Guenther | |||||
2011-03-30 | s3-includes: no point in including all security headers globally. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-03-30 | s3-includes: only include system/filesys.h when needed. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-03-24 | s3-prototypes: remove protos of some dead functions. | Günther Deschner | 1 | -1/+0 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Thu Mar 24 00:52:01 CET 2011 on sn-devel-104 | |||||
2011-03-21 | s3: Fix Coverity ID 770, REVERSE_INULL | Volker Lendecke | 1 | -15/+7 | |
We dereference "res" in various places, no point in checking. All current callers send "res!=NULL". | |||||
2011-03-16 | s3-build: only include asn1 headers where actually needed. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-03-16 | s3-build: stop including ldap and lber headers everywhere in the code. | Günther Deschner | 1 | -0/+1 | |
Instead use new header smb_ldap.h where all LDAP API related things are handled, while smbldap.h only deals with our smbldap_X() API. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Mar 16 10:54:51 CET 2011 on sn-devel-104 | |||||
2011-03-10 | Quite some callers of sid_split_rid do not care about the rid | Volker Lendecke | 1 | -2/+1 | |
2011-02-27 | s3: Fix some nonempty blank lines | Volker Lendecke | 1 | -10/+9 | |
2011-02-25 | s3-libads: make ndr_print_ads_auth_flags() static. | Günther Deschner | 2 | -2/+2 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri Feb 25 01:55:26 CET 2011 on sn-devel-104 | |||||
2011-02-18 | s3-libads Remove MIT-specific krb5_princ_realm macro calls. | Andrew Bartlett | 1 | -55/+19 | |
When compiled against heimdal, we need to use a more elegant API. Andrew Bartlett | |||||
2011-02-11 | s3-libads: make ads_guess_service_principal static. | Günther Deschner | 3 | -71/+69 | |
Guenther | |||||
2011-02-10 | s3: give ../librpc/ndr/util.c its own header. | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-01-21 | s3:libads: use dcerpc_spoolss_X() functions | Stefan Metzmacher | 1 | -2/+4 | |
metze Signed-off-by: Andreas Schneider <asn@samba.org> | |||||
2011-01-12 | s3: Fix some nonempty blank lines | Volker Lendecke | 1 | -8/+8 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Jan 12 19:04:25 CET 2011 on sn-devel-104 | |||||
2011-01-07 | netlogon: move netlogon helpers to ../libcli/netlogon. | Günther Deschner | 1 | -1/+1 | |
Guenther |