samba.git
16 years agor7013: added tls support to the builtin web server. It auto-detects if the client
Andrew Tridgell [Fri, 27 May 2005 11:57:14 +0000 (11:57 +0000)]
r7013: added tls support to the builtin web server. It auto-detects if the client
is using tls by looking at the first byte on the connection. This allows
both https and http services to be on the same port

16 years agor7012: added smb.conf parameters
Andrew Tridgell [Fri, 27 May 2005 11:55:30 +0000 (11:55 +0000)]
r7012: added smb.conf parameters
  web tls keyfile
  web tls certfile
  web tls cafile
  web tls crlfile

16 years agor7011: when using macros, the parameters should be specified unless its a
Andrew Tridgell [Fri, 27 May 2005 11:54:29 +0000 (11:54 +0000)]
r7011: when using macros, the parameters should be specified unless its a
varargs function you are replacing. Otherwise if you have any
structure element called "socket" and you have a macro for "socket"
then the code will fail.

16 years agor7010: Merge libcli/libsmb.mk into libcli/config.mk
Tim Potter [Fri, 27 May 2005 07:38:41 +0000 (07:38 +0000)]
r7010: Merge libcli/libsmb.mk into libcli/config.mk

16 years agor7009: the correct for maing it all build with my gcc-4.0
Stefan Metzmacher [Fri, 27 May 2005 07:30:24 +0000 (07:30 +0000)]
r7009: the correct for maing it all build with my gcc-4.0

I assume the problem is caused by including a precompiled header twice...

metze

16 years agor7008: - split out the loadparm type definitions so loadparm internals can be accesse...
Andrew Tridgell [Fri, 27 May 2005 07:14:01 +0000 (07:14 +0000)]
r7008: - split out the loadparm type definitions so loadparm internals can be accessed externally

- moved esp_lpGet() to web_server/calls.c

- attempt to fixup ejs build with includes.h again

16 years agor7007: try to get ejs compiling again
Andrew Tridgell [Fri, 27 May 2005 06:42:31 +0000 (06:42 +0000)]
r7007: try to get ejs compiling again

16 years agor7006: fix a build problem with my gcc-4.0
Stefan Metzmacher [Fri, 27 May 2005 06:40:31 +0000 (06:40 +0000)]
r7006: fix a build problem with my gcc-4.0

metze

16 years agor7005: added a esp page to demonstrate exception handling
Andrew Tridgell [Fri, 27 May 2005 04:37:51 +0000 (04:37 +0000)]
r7005: added a esp page to demonstrate exception handling

16 years agor7004: added support for exceptions generated in the esp library. If the OS
Andrew Tridgell [Fri, 27 May 2005 04:37:07 +0000 (04:37 +0000)]
r7004: added support for exceptions generated in the esp library. If the OS
supports setjmp/longjmp then the exception will generate a error in
the web page and the Samba log. If the OS doesn't support setjmp then
we will abort.

16 years agor7003: added an example script for fetching smb.conf parameters from esp scripts
Andrew Tridgell [Fri, 27 May 2005 03:59:12 +0000 (03:59 +0000)]
r7003: added an example script for fetching smb.conf parameters from esp scripts

16 years agor7002: added support for getting at loadparm config parameters via lpGet() in esp...
Andrew Tridgell [Fri, 27 May 2005 03:58:12 +0000 (03:58 +0000)]
r7002: added support for getting at loadparm config parameters via lpGet() in esp scripts

lpGet takes 4 forms
    v = lpGet("type:parm");             gets a parametric variable
    v = lpGet("share", "type:parm");    gets a parametric variable on a share
    v = lpGet("parm");                  gets a global variable
    v = lpGet("share", "parm");         gets a share variable

in all cases a ejs object of the appropriate type for the variable is returned.

This commit also adds the function typeof() which returns the type of an object

16 years agor7001: make sure we install the esp files
Andrew Tridgell [Fri, 27 May 2005 00:45:18 +0000 (00:45 +0000)]
r7001: make sure we install the esp files

16 years agor7000: only keep session data if not empty - this saves us using lots of memory needl...
Andrew Tridgell [Fri, 27 May 2005 00:43:24 +0000 (00:43 +0000)]
r7000: only keep session data if not empty - this saves us using lots of memory needlessly

16 years agor6999: - renamed our html files to esp
Andrew Tridgell [Fri, 27 May 2005 00:31:41 +0000 (00:31 +0000)]
r6999: - renamed our html files to esp

- added a favicon.ico so bookmarks show a samba icon

- added a session.esp demonstration of session variables

16 years agor6998: - added support for application[] data, which is global to all clients using...
Andrew Tridgell [Fri, 27 May 2005 00:29:58 +0000 (00:29 +0000)]
r6998: - added support for application[] data, which is global to all clients using the web server.
  This allows for things like
     application['state'] = "shuttting down"
  and then every web client can see that the server is going down

- added support for session[] data. This allows web pages to store
  long term data specific to this client. It relies on
  cookies. Sessions auto timeout (default timeout 5 minutes). The
  timeout can be set in the scripts.

- changed from processing all .html files as esp, to only processing
  .esp files as esp. This makes it easier to compare the samba web
  server to appWeb as a reference implementation.

- expanded the number of standard variables setup by esp. See the
  showvars.esp example page for all variables.

16 years agor6997: added a private pointer to the task structure. This is needed by the session...
Andrew Tridgell [Fri, 27 May 2005 00:25:25 +0000 (00:25 +0000)]
r6997: added a private pointer to the task structure. This is needed by the session data
in the web server

16 years agor6990: apparently some systems define UNUSED :-)
Andrew Tridgell [Thu, 26 May 2005 04:18:48 +0000 (04:18 +0000)]
r6990: apparently some systems define UNUSED :-)

16 years agor6989: - added support for esp style includes (which include a esp file, instead...
Andrew Tridgell [Thu, 26 May 2005 03:22:38 +0000 (03:22 +0000)]
r6989: - added support for esp style includes (which include a esp file, instead of a ejs file)

- added a test of esp style includes to the esptest html

16 years agor6988: added a test of esp include() calls
Andrew Tridgell [Thu, 26 May 2005 03:07:38 +0000 (03:07 +0000)]
r6988: added a test of esp include() calls

16 years agor6987: - make sure esp pages cannot read data outside of the swat directory
Andrew Tridgell [Thu, 26 May 2005 03:05:37 +0000 (03:05 +0000)]
r6987: - make sure esp pages cannot read data outside of the swat directory

- don't expose the real system path to esp scripts

- fixed absolute paths in include() calls

16 years agor6986: added support for <% include("somefile.ejs") %> for including common scripts
Andrew Tridgell [Thu, 26 May 2005 02:52:05 +0000 (02:52 +0000)]
r6986: added support for <% include("somefile.ejs") %> for including common scripts

16 years agor6985: rearranged the directory structure so as to make it possible to support esp...
Andrew Tridgell [Thu, 26 May 2005 02:40:22 +0000 (02:40 +0000)]
r6985: rearranged the directory structure so as to make it possible to support esp include() call

16 years agor6984: added tree representation documentation and utility code, to be used for subcl...
Derrell Lipman [Thu, 26 May 2005 02:16:45 +0000 (02:16 +0000)]
r6984: added tree representation documentation and utility code, to be used for subclasses of object classes

16 years agor6983: add some sample esp pages to demonstrate the use of some of the features of...
Andrew Tridgell [Thu, 26 May 2005 02:08:12 +0000 (02:08 +0000)]
r6983: add some sample esp pages to demonstrate the use of some of the features of the server
side scripting language

16 years agor6982: install the swat pages with 'make installswat'
Andrew Tridgell [Thu, 26 May 2005 02:06:33 +0000 (02:06 +0000)]
r6982: install the swat pages with 'make installswat'

16 years agor6981: first version of the builtin web server for Samba4
Andrew Tridgell [Thu, 26 May 2005 01:06:32 +0000 (01:06 +0000)]
r6981: first version of the builtin web server for Samba4

This includes an embedded server side scripting system called 'esp'
(see http://www.appwebserver.org/products/esp/esp.html) and javascript
based scripting language called 'esj' (see
http://www.appwebserver.org/products/ejs/ejs.html)

The justification for including this scripting language is that it
should make it much easier to write a high quality web interface for
Samba4. The scripting language can call into any Samba4 library code
(so for example it will be able to make ldb and loadparm calls), plus
it provides easy support for forms, cookies, sessions etc.

There is still quite a bit more work to do on the web server, but
there is enough here now for people to look at and comment. I will be
committing some sample web pages that test esp functionality shortly.

16 years agor6980: added data_blob_append(), which I use in the web server
Andrew Tridgell [Thu, 26 May 2005 01:00:58 +0000 (01:00 +0000)]
r6980: added data_blob_append(), which I use in the web server

16 years agor6975: Test opening filenames with control characters in fails
Jeremy Allison [Wed, 25 May 2005 19:16:18 +0000 (19:16 +0000)]
r6975: Test opening filenames with control characters in fails
with INVALID_NAME.
Jeremy.

16 years agor6973: Merge new version of pidl into the main SAMBA_4_0 branch.
Jelmer Vernooij [Wed, 25 May 2005 13:50:27 +0000 (13:50 +0000)]
r6973: Merge new version of pidl into the main SAMBA_4_0 branch.

The main difference in this new version is the extra data structure generated
between the IDL data structure and the NDR parser:

IDL -> NDR -> { ndr_parser, ndr_header, eparser, etc }

This makes the ndr_parser.pm internals much more sane.

Other changes include:

- Remove unnecessary calls with NDR_BUFFERS (for example, GUID doesn't have any buffers, just scalars) as well as some (unnecessary) nested setting of flags.
- Parse array loops in the C code rather then calling ndr_pull_array(). This allows us to have, for example, arrays of pointers or arrays of pointers to arrays, etc..
- Use if() {} rather then if () goto foo; everywhere
- NDR_IN no longer implies LIBNDR_FLAG_REF_ALLOC
- By default, top level pointers are now "ref" (as is the default in
  most other IDL compilers). This can be overridden using the
  default_pointer_top() property.
- initial work on new ethereal parser generators by Alan DeKok and me
- pidl now writes errors in the standard format used by compilers, which
  is parsable by most editors
- ability to warn about the fact that pidl extension(s) have been used,
  useful for making sure IDL files work with other IDL compilers.

oh, and there's probably some other things I can't think of right now..

16 years agor6968: fixed a typo in the event macros. I'm surprised this one didn't show up earlier!
Andrew Tridgell [Wed, 25 May 2005 09:36:22 +0000 (09:36 +0000)]
r6968: fixed a typo in the event macros. I'm surprised this one didn't show up earlier!

16 years agor6967: fixed the new multi-value dn=@ATTRIBUTES so it actually works :-)
Andrew Tridgell [Wed, 25 May 2005 09:05:23 +0000 (09:05 +0000)]
r6967: fixed the new multi-value dn=@ATTRIBUTES so it actually works :-)

this demonstrates that we need a improved test suite as well

16 years agor6963: Further definitions for share manipulation code. Untested.
Rafal Szczesniak [Tue, 24 May 2005 22:48:49 +0000 (22:48 +0000)]
r6963: Further definitions for share manipulation code. Untested.

Original patch provided by Gregory Leocadie <gleocadie@idealx.com>

rafal

16 years agor6962: Severely simplified share functions. Removed call levels as we don't
Rafal Szczesniak [Tue, 24 May 2005 22:47:01 +0000 (22:47 +0000)]
r6962: Severely simplified share functions. Removed call levels as we don't
seem to need them at the moment. Functions completely untested so assumed
broken.

Original patch submitted by Gregory Leocadie <gleocadie@idealx.com>
My apologies if I have written your name incorrectly.

rafal

16 years agor6961: Add RPC-WINREG to list of win2k3 tests
Jelmer Vernooij [Tue, 24 May 2005 21:59:01 +0000 (21:59 +0000)]
r6961: Add RPC-WINREG to list of win2k3 tests
Fix bug in test for QueryMultipleValues
Ignore errors from CreateKey() and GetKeySecurity() for now

16 years agor6956: added start of ldb_sqlite3 work
Derrell Lipman [Tue, 24 May 2005 13:31:22 +0000 (13:31 +0000)]
r6956: added start of ldb_sqlite3 work

16 years agor6952: Remove unneeded include of popt_common.h
Tim Potter [Tue, 24 May 2005 05:53:50 +0000 (05:53 +0000)]
r6952: Remove unneeded include of popt_common.h

16 years agor6951: Fix all calls to setup_logging() that use 'True' as a second argument.
Tim Potter [Tue, 24 May 2005 05:51:20 +0000 (05:51 +0000)]
r6951: Fix all calls to setup_logging() that use 'True' as a second argument.
In Samba4 this is now an enum.  Possibly by accident, True just happens
to map to the right value in this case.  (-:

16 years agor6939: Get rid of SUBSYSTEM::NDR since all it did was require NDR_RAW.
Tim Potter [Mon, 23 May 2005 07:12:38 +0000 (07:12 +0000)]
r6939: Get rid of SUBSYSTEM::NDR since all it did was require NDR_RAW.

16 years agor6938: a minor update, use a better name for the NDR compression subsystem
Stefan Metzmacher [Mon, 23 May 2005 06:54:38 +0000 (06:54 +0000)]
r6938: a minor update, use a better name for the NDR compression subsystem

metze

16 years agor6937: some minor fixes and updates
Stefan Metzmacher [Mon, 23 May 2005 06:49:17 +0000 (06:49 +0000)]
r6937: some minor fixes and updates

metze

16 years agor6936: Have RPC compression depend only on NDR_DRSUAPI instead of NDR_RAW which
Tim Potter [Mon, 23 May 2005 06:02:00 +0000 (06:02 +0000)]
r6936: Have RPC compression depend only on NDR_DRSUAPI instead of NDR_RAW which
pulls it in for everyone.

16 years agor6935: don't do three things at a time :-)
Simo Sorce [Sun, 22 May 2005 10:40:54 +0000 (10:40 +0000)]
r6935: don't do three things at a time :-)

16 years agor6934: thanks to HotaruT for pointing out skel.c was not in line with the rest of...
Simo Sorce [Sun, 22 May 2005 10:27:51 +0000 (10:27 +0000)]
r6934: thanks to HotaruT for pointing out skel.c was not in line with the rest of the code

16 years agor6933: Add a couple of helper functions for creating nbt names.
Tim Potter [Sun, 22 May 2005 10:23:01 +0000 (10:23 +0000)]
r6933: Add a couple of helper functions for creating nbt names.

16 years agor6932: Comment out static function - not used anywhere?
Tim Potter [Sun, 22 May 2005 10:21:29 +0000 (10:21 +0000)]
r6932: Comment out static function - not used anywhere?

16 years agor6931: declare this to avoid warnings until we have loadable modules
Simo Sorce [Sun, 22 May 2005 10:02:53 +0000 (10:02 +0000)]
r6931: declare this to avoid warnings until we have loadable modules

16 years agor6930: Use NBT_NAME_CLIENT instead of the number 0.
Tim Potter [Sun, 22 May 2005 09:43:20 +0000 (09:43 +0000)]
r6930: Use NBT_NAME_CLIENT instead of the number 0.

16 years agor6929: LIBCLI_NBT depends on LIB_SECURITY_NDR for various security descriptor
Tim Potter [Sun, 22 May 2005 08:15:10 +0000 (08:15 +0000)]
r6929: LIBCLI_NBT depends on LIB_SECURITY_NDR for various security descriptor
utilities.

16 years agor6928: Add support for printing trusted domain names, sids and passwords in
Andrew Bartlett [Sat, 21 May 2005 06:31:02 +0000 (06:31 +0000)]
r6928: Add support for printing trusted domain names, sids and passwords in
the Samba4 'net samdump'.

Andrew Bartlett

16 years agor6927: Make it easier to program with the SamSync callback interface, perform
Andrew Bartlett [Sat, 21 May 2005 05:05:44 +0000 (05:05 +0000)]
r6927: Make it easier to program with the SamSync callback interface, perform
the decryption seperate to the callback functions.

Andrew Bartlett

16 years agor6926: More build farm fixes:
Jelmer Vernooij [Fri, 20 May 2005 23:19:06 +0000 (23:19 +0000)]
r6926: More build farm fixes:
 - Warn about unknown attributes in .mk
 - Remove more unused functions

16 years agor6924: Remove some unused functions.
Jelmer Vernooij [Fri, 20 May 2005 14:11:25 +0000 (14:11 +0000)]
r6924: Remove some unused functions.

16 years agor6922: remove bad file...
Stefan Metzmacher [Fri, 20 May 2005 13:58:11 +0000 (13:58 +0000)]
r6922: remove bad file...

metze

16 years agor6921: preparing for cherry picking merging
Stefan Metzmacher [Fri, 20 May 2005 13:52:40 +0000 (13:52 +0000)]
r6921: preparing for cherry picking merging

16 years agor6920: display the SVN revision in svk build of tree's directly mirrored from samba.org
Stefan Metzmacher [Fri, 20 May 2005 13:49:14 +0000 (13:49 +0000)]
r6920: display the SVN revision in svk build of tree's directly mirrored from samba.org

metze

16 years agor6919: Jelmer, here is my script for filtering individual binaries/subsystems/etc
Tim Potter [Fri, 20 May 2005 07:46:19 +0000 (07:46 +0000)]
r6919: Jelmer, here is my script for filtering individual binaries/subsystems/etc
out of the samba4-deps.dot file.  Use like:

script/depfilter.py regpatch < samba4-deps.dot | dotty -

and then scratch your head and wonder why regpatch has to link with 3/4
of what it does.

16 years agor6907: Unixinfo for samba4, not activated by default.
Volker Lendecke [Thu, 19 May 2005 15:45:25 +0000 (15:45 +0000)]
r6907: Unixinfo for samba4, not activated by default.

Volker

16 years agor6904: use "krb5:kdc=yes" in your smb.conf when you have the lorikeet-heimdal kdc...
Stefan Metzmacher [Thu, 19 May 2005 13:35:50 +0000 (13:35 +0000)]
r6904: use "krb5:kdc=yes" in your smb.conf when you have the lorikeet-heimdal kdc running

metze

16 years agor6902: Turn the LDAP server on by default. It is no worse than the others...
Andrew Bartlett [Thu, 19 May 2005 11:23:31 +0000 (11:23 +0000)]
r6902: Turn the LDAP server on by default.  It is no worse than the others...
(no ACL support)

Andrew Bartlett

16 years agor6884: the invocationID is only used as objectGUID on the NTDS Settings object on the
Stefan Metzmacher [Wed, 18 May 2005 14:29:23 +0000 (14:29 +0000)]
r6884: the invocationID is only used as objectGUID on the NTDS Settings object on the
first DC in the forest!

metze

16 years agor6883: Move to what simo assures me is the 'correct' way to find the NetBIOS
Andrew Bartlett [Wed, 18 May 2005 14:19:17 +0000 (14:19 +0000)]
r6883: Move to what simo assures me is the 'correct' way to find the NetBIOS
and long names for a domain.

Add servicePrincipalName mapping table (administrator configurable),
in the same spot as microsoft uses.

Andrew Bartlett

16 years agor6882: Put in configure tests and #ifdef to keep Samba building on older Heimdal.
Andrew Bartlett [Wed, 18 May 2005 14:17:53 +0000 (14:17 +0000)]
r6882: Put in configure tests and #ifdef to keep Samba building on older Heimdal.

Andrew Bartlett

16 years agor6879: Another attempt at including the 'right' kerberos headers on
Andrew Bartlett [Wed, 18 May 2005 11:50:09 +0000 (11:50 +0000)]
r6879: Another attempt at including the 'right' kerberos headers on
dual-install systems.

Andrew Bartlett

16 years agor6877: added CLDAP testing to test_ldap.sh
Andrew Tridgell [Wed, 18 May 2005 04:23:12 +0000 (04:23 +0000)]
r6877: added CLDAP testing to test_ldap.sh

16 years agor6876: - fixed a memory leak in the cldap server
Andrew Tridgell [Wed, 18 May 2005 04:18:19 +0000 (04:18 +0000)]
r6876: - fixed a memory leak in the cldap server

- keep the samdb open between requests

16 years agor6875: added a BENCH-CLDAP test. Speed of the cldap server isn't all that important...
Andrew Tridgell [Wed, 18 May 2005 04:17:24 +0000 (04:17 +0000)]
r6875: added a BENCH-CLDAP test. Speed of the cldap server isn't all that important, but it does
help find memory leaks (and in fact, there was one, fixed in next commit)

16 years agor6874: Fix static library build
Jelmer Vernooij [Wed, 18 May 2005 01:11:33 +0000 (01:11 +0000)]
r6874: Fix static library build

16 years agor6873: fixed exec bit
Andrew Tridgell [Wed, 18 May 2005 01:03:55 +0000 (01:03 +0000)]
r6873: fixed exec bit

16 years agor6869: removed completely bogus BASE-RW2 test
Andrew Tridgell [Tue, 17 May 2005 22:34:38 +0000 (22:34 +0000)]
r6869: removed completely bogus BASE-RW2 test

16 years agor6868: the @ATTRIBUTES object format has changed
Simo Sorce [Tue, 17 May 2005 21:46:16 +0000 (21:46 +0000)]
r6868: the @ATTRIBUTES object format has changed

16 years agor6867: this code will change the way the @ATTRIBUTES object is handled
Simo Sorce [Tue, 17 May 2005 21:43:47 +0000 (21:43 +0000)]
r6867: this code will change the way the @ATTRIBUTES object is handled
this object properties are now used as multivalue attributes
now all values inserted are checked against a "valid values table"

eg:

this form is now accepted:

dn: @ATTRIBUTES
uid: CASE_INSENSITIVE
uid: WILDCARD

this form is now rejected:

dn: @ATTRIBUTES
uid: CASE_INSENSITIVE WILDCARD

please update your .ldb files if you make use of @ATTRIBUTES
(sam.ldb heavily uses it)

the code passes all make test tests for both tdb and ldap, it also
passes the new test to check for wrong @ATTRIBUTES attribute values

Simo.

16 years agor6863: lib-friendlier names + fix some dependencies
Jelmer Vernooij [Tue, 17 May 2005 20:18:06 +0000 (20:18 +0000)]
r6863: lib-friendlier names + fix some dependencies

16 years agor6862: Add some more tests
Jelmer Vernooij [Tue, 17 May 2005 17:32:25 +0000 (17:32 +0000)]
r6862: Add some more tests
Accept new command-line options --keep, --outputdir and --idl-compiler.

We're currently at 34 IDL tests (...and counting)

16 years agor6860: Add some allocation and alignment tests, remove uint64 from list of scalars
Jelmer Vernooij [Tue, 17 May 2005 15:51:35 +0000 (15:51 +0000)]
r6860: Add some allocation and alignment tests, remove uint64 from list of scalars
(it doesn't have any push/pull functions anymore either)

16 years agor6859: Add ndr_align tests, use environment variables ($CC, $CFLAGS, $LDFLAGS)
Jelmer Vernooij [Tue, 17 May 2005 13:50:47 +0000 (13:50 +0000)]
r6859: Add ndr_align tests, use environment variables ($CC, $CFLAGS, $LDFLAGS)
where possible.

16 years agor6857: - Support [public] on functions
Jelmer Vernooij [Tue, 17 May 2005 13:19:40 +0000 (13:19 +0000)]
r6857: - Support [public] on functions
- Add some more pidl tests based on ref_notes.txt

We currently fail some tests because we don't default to "ref"
for top-level pointers at the moment. We also fail some of the multi-level
tests.

16 years agor6856: Add a couple of tests that test for the behaviour described in
Jelmer Vernooij [Tue, 17 May 2005 12:17:42 +0000 (12:17 +0000)]
r6856: Add a couple of tests that test for the behaviour described in
tridge's ref_notes.txt document.

16 years agor6854: Add --quiet option to pidl
Jelmer Vernooij [Tue, 17 May 2005 11:43:46 +0000 (11:43 +0000)]
r6854: Add --quiet option to pidl
Some work on a testsuite for pidl, including one simple test.

16 years agor6853: again fixed SOCKET_WRAPPER_DIR in 'make test'
Andrew Tridgell [Tue, 17 May 2005 07:38:01 +0000 (07:38 +0000)]
r6853: again fixed SOCKET_WRAPPER_DIR in 'make test'

16 years agor6852: implement an idea from kinkie to make the 'make test' target automatically...
Andrew Tridgell [Tue, 17 May 2005 07:37:17 +0000 (07:37 +0000)]
r6852: implement an idea from kinkie to make the 'make test' target automatically kill smbd
when finished, using a fifo

this makes 'make test' much safer for build farm usage

16 years agor6851: Typo in comment.
Tim Potter [Tue, 17 May 2005 07:15:12 +0000 (07:15 +0000)]
r6851: Typo in comment.

16 years agor6848: Remove some dead/unused code.
Tim Potter [Tue, 17 May 2005 06:59:29 +0000 (06:59 +0000)]
r6848: Remove some dead/unused code.

16 years agor6847: Fix some unused variable warnings in the libnet torture test.
Tim Potter [Tue, 17 May 2005 06:39:19 +0000 (06:39 +0000)]
r6847: Fix some unused variable warnings in the libnet torture test.

16 years agor6846: make smbd terminate immediately on EOF from stdin
Andrew Tridgell [Tue, 17 May 2005 06:20:54 +0000 (06:20 +0000)]
r6846: make smbd terminate immediately on EOF from stdin

this will be used to make sure 'make test' kills smbd when finished

16 years agor6845: make the talloc header align to 40 bytes, which costs us an extra 4
Andrew Tridgell [Tue, 17 May 2005 05:48:30 +0000 (05:48 +0000)]
r6845: make the talloc header align to 40 bytes, which costs us an extra 4
bytes per allocation, but makes it much more portable

16 years agor6842: Move to .mk file
Jelmer Vernooij [Tue, 17 May 2005 01:13:53 +0000 (01:13 +0000)]
r6842: Move to .mk file

16 years agor6839: Add support for building subsystems as shared libraries. This can be
Jelmer Vernooij [Tue, 17 May 2005 00:51:13 +0000 (00:51 +0000)]
r6839: Add support for building subsystems as shared libraries. This can be
done by setting:
OUTPUT_TYPE = SHARED_LIBRARY
in the [SUBSYSTEM::...] section belonging to a subsystem.

The idea is to allow multiple values to OUTPUT_TYPE simultaneously
(e.g. OUTPUT_TYPE = SHARED_LIBRARY, STATIC_LIBRARY, OBJLIST )

16 years agor6838: Remove unnecessary calls to gensec_gsskrb5
Jelmer Vernooij [Tue, 17 May 2005 00:02:55 +0000 (00:02 +0000)]
r6838: Remove unnecessary calls to gensec_gsskrb5
Make the build system give a proper warning about this in the future

16 years agor6836: Allow optionally passing in a destination filename for NDR parsers
Jelmer Vernooij [Mon, 16 May 2005 23:30:34 +0000 (23:30 +0000)]
r6836: Allow optionally passing in a destination filename for NDR parsers
and NDR headers

16 years agor6833: split out the routine that calculates the diff between two ldb messages from...
Andrew Tridgell [Mon, 16 May 2005 22:31:45 +0000 (22:31 +0000)]
r6833: split out the routine that calculates the diff between two ldb messages from ldbedit,
so other progs can use it.

16 years agor6831: talloc now requires config.h (this fixes ldb build)
Andrew Tridgell [Mon, 16 May 2005 21:42:11 +0000 (21:42 +0000)]
r6831: talloc now requires config.h (this fixes ldb build)

16 years agor6830: put header checks in config.m4 so when it is included by other projects the...
Andrew Tridgell [Mon, 16 May 2005 21:22:54 +0000 (21:22 +0000)]
r6830: put header checks in config.m4 so when it is included by other projects the right
configure checks are done

16 years agor6829: include the talloc autoconf tests when building ldb standalone
Andrew Tridgell [Mon, 16 May 2005 21:09:51 +0000 (21:09 +0000)]
r6829: include the talloc autoconf tests when building ldb standalone

16 years agor6828: More portability fixes
Jelmer Vernooij [Mon, 16 May 2005 21:08:44 +0000 (21:08 +0000)]
r6828: More portability fixes

16 years agor6825: Fall back to chsize if ftruncate is not available
Jelmer Vernooij [Mon, 16 May 2005 18:57:56 +0000 (18:57 +0000)]
r6825: Fall back to chsize if ftruncate is not available
patch from Steven Edwards

16 years agor6819: More notes on krb5 requirements
Andrew Bartlett [Mon, 16 May 2005 15:31:02 +0000 (15:31 +0000)]
r6819: More notes on krb5 requirements

Andrew Bartlett

16 years agor6817: - fixed empty ldap search elements in filters
Andrew Tridgell [Mon, 16 May 2005 11:17:57 +0000 (11:17 +0000)]
r6817: - fixed empty ldap search elements in filters

- added support for guids in cldap netlogon searches.

the cldap server now passes the LDAP-CLDAP torture test

16 years agor6816: - fixed debug display of ndr netlogon union
Andrew Tridgell [Mon, 16 May 2005 11:16:48 +0000 (11:16 +0000)]
r6816: - fixed debug display of ndr netlogon union

- send a username when scanning to make structure elements clearer

16 years agor6815: fill in values in cldap server as well
Andrew Tridgell [Mon, 16 May 2005 10:30:51 +0000 (10:30 +0000)]
r6815: fill in values in cldap server as well