Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | r12503: This function was just too simple to leave unimplemented. | Andrew Bartlett | 2005-12-26 | 1 | -2/+15 | |
| | | | | Andrew Bartlett | |||||
* | r12502: A bit of work on the RPC-SAMR torture test. Prove that ridToSid is | Andrew Bartlett | 2005-12-26 | 1 | -10/+30 | |
| | | | | | | really as simple as it looks. Andrew Bartlett | |||||
* | r12501: Merge EJSHeader.pm into EJS.pm and simplify smbcalls_rpc.c a bit, | Jelmer Vernooij | 2005-12-26 | 7 | -143/+75 | |
| | | | | | now that it is guaranteed that the smbcalls modules are always initialized after the EJS subsystem itself. | |||||
* | r12500: Use init functions explicitly in a few more places. 'gensec' and ↵ | Jelmer Vernooij | 2005-12-26 | 15 | -23/+73 | |
| | | | | | | 'librpc' are the only two subsystems left to convert. | |||||
* | r12499: Move smb_build.h out of includes.h | Jelmer Vernooij | 2005-12-26 | 29 | -10/+28 | |
| | ||||||
* | r12498: Eliminate INIT_OBJ_FILES and ADD_OBJ_FILES. We were not using | Jelmer Vernooij | 2005-12-26 | 63 | -339/+295 | |
| | | | | | | the difference between these at all, and in the future the fact that INIT_OBJ_FILES include smb_build.h will be sufficient to have recompiles at the right time. | |||||
* | r12494: Support loading modules from .so files for most subsystems. | Jelmer Vernooij | 2005-12-26 | 28 | -41/+207 | |
| | | | | | | | | | | | | | | | | | We now use a different system for initializing the modules for a subsystem. Most subsystems now have an init function that looks something like this: init_module_fn static_init[] = STATIC_AUTH_MODULES; init_module_fn *shared_init = load_samba_modules(NULL, "auth"); run_init_functions(static_init); run_init_functions(shared_init); talloc_free(shared_init); I hope to eliminate the other init functions later on (the init_programname_subsystems; defines). | |||||
* | r12490: Fix --warn-compat | Jelmer Vernooij | 2005-12-26 | 3 | -47/+23 | |
| | ||||||
* | r12489: Forward declare nbtd_iface_name | Jelmer Vernooij | 2005-12-26 | 1 | -0/+1 | |
| | ||||||
* | r12488: Fix MANIFEST to match recent changes | Jelmer Vernooij | 2005-12-26 | 1 | -14/+14 | |
| | ||||||
* | r12487: Remove obsolete function | Jelmer Vernooij | 2005-12-26 | 1 | -24/+0 | |
| | ||||||
* | r12484: Initial work on supporting non-typedeffed types | Jelmer Vernooij | 2005-12-25 | 8 | -44/+45 | |
| | ||||||
* | r12483: Remove --tdr-header option (merged into --tdr-parser) | Jelmer Vernooij | 2005-12-25 | 3 | -70/+42 | |
| | ||||||
* | r12482: Add some more tests | Jelmer Vernooij | 2005-12-25 | 2 | -14/+12 | |
| | ||||||
* | r12481: Move parser-specific utility functions to idl.yp, remove some unused ↵ | Jelmer Vernooij | 2005-12-25 | 3 | -492/+641 | |
| | | | | | | | functions Allow the use of non-typedef structs and unions when declaring variables. Allow the use of the 'signed' and 'unsigned' qualifiers for integer types | |||||
* | r12480: Extend testsuite | Jelmer Vernooij | 2005-12-25 | 1 | -1/+24 | |
| | ||||||
* | r12470: Add helper module for pidl tests | Jelmer Vernooij | 2005-12-25 | 12 | -115/+189 | |
| | | | | Convert other pidl tests to use Test::More and run them from 'make test' | |||||
* | r12465: Merge Parse::Pidl::Samba4::NDR::Header into ↵ | Jelmer Vernooij | 2005-12-25 | 8 | -251/+187 | |
| | | | | | | Parse::Pidl::Samba4::NDR::Parser. Small optimization to avoid including NDR headers multiple times | |||||
* | r12464: Add simple IDL parsing tests for pidl using the standard perl | Jelmer Vernooij | 2005-12-24 | 14 | -277/+134 | |
| | | | | | testing framework (Test::Simple, distributed with perl itself). Run these tests from 'make test' | |||||
* | r12463: Rename 'Samba' namespace to 'Samba4' | Jelmer Vernooij | 2005-12-24 | 15 | -47/+51 | |
| | ||||||
* | r12462: Hide oo magic from callers of the parser | Jelmer Vernooij | 2005-12-24 | 4 | -84/+101 | |
| | ||||||
* | r12461: Some updates to the srvsvc IDL from Ronnie Sahlberg | Jelmer Vernooij | 2005-12-24 | 3 | -432/+372 | |
| | ||||||
* | r12454: Forward declare struct nbt_iface_name | Jelmer Vernooij | 2005-12-23 | 1 | -0/+1 | |
| | ||||||
* | r12451: Add 'struct libnet_context;' - apparently the order of the prototypes | Jelmer Vernooij | 2005-12-23 | 1 | -0/+1 | |
| | | | | | in proto.h previously already did this somehow, probably because it was used as a return value before it was used as a parameter. | |||||
* | r12450: Move generation of proto and full object lists to makefile.pm. ↵ | Jelmer Vernooij | 2005-12-23 | 6 | -30/+40 | |
| | | | | | | | 'make' now handles expanding the protoheader object list, rather then the build system, which makes the makefile quite a bit shorter. | |||||
* | r12449: Fix some warnings | Jelmer Vernooij | 2005-12-23 | 1 | -8/+8 | |
| | ||||||
* | r12448: add some usefull debug messages | Stefan Metzmacher | 2005-12-23 | 1 | -0/+5 | |
| | | | | metze | |||||
* | r12446: Merge mkproto.sh's functionality into mkproto.pl | Jelmer Vernooij | 2005-12-23 | 5 | -82/+90 | |
| | | | | | | | | Allow specifying the _PUBLIC_ keyword on functions to indicate a function is public. Public prototypes can now be written to a seperate header, although this functionality is not used yet. | |||||
* | r12445: Fix header in manpage, make script executable | Jelmer Vernooij | 2005-12-23 | 2 | -1/+1 | |
| | ||||||
* | r12444: Initial version of a NEWS file that should contain a summary of changes | Jelmer Vernooij | 2005-12-23 | 1 | -0/+504 | |
| | | | | that matter to the user. | |||||
* | r12443: Forgot to rename two files | Jelmer Vernooij | 2005-12-23 | 3 | -1/+1 | |
| | ||||||
* | r12442: only set the "wins server" parameter if it's not set | Stefan Metzmacher | 2005-12-22 | 1 | -1/+1 | |
| | | | | metze | |||||
* | r12440: fix crash bugs | Stefan Metzmacher | 2005-12-22 | 2 | -0/+12 | |
| | | | | metze | |||||
* | r12439: No need to keep walking this list if we find the match. | Andrew Bartlett | 2005-12-22 | 1 | -0/+1 | |
| | | | | Andrew Bartlett | |||||
* | r12437: if the client gives us an unicast name query with recursion_desired, | Stefan Metzmacher | 2005-12-22 | 1 | -7/+6 | |
| | | | | | | it's a wins server request, even if it's a name of one of our interfaces metze | |||||
* | r12436: Fix Samba4 as a server to Win2000 for the domain join. | Andrew Bartlett | 2005-12-22 | 1 | -46/+74 | |
| | | | | | | | | We still have Win2000 issues, but now we correctly handle the case where NTLMSSP is chosen as an authentication mech, but the OID list still contains Kerberos as a later option. Andrew Bartlett | |||||
* | r12435: the max wins ttl is 6 days in windows and samba3 | Stefan Metzmacher | 2005-12-22 | 1 | -1/+1 | |
| | | | | metze | |||||
* | r12434: implement database scavenging, the only missing part is the ↵ | Stefan Metzmacher | 2005-12-22 | 5 | -2/+429 | |
| | | | | | | | | verifying of active replicas with the owning wins server, after the verify interval passes. metze | |||||
* | r12433: Add comment describing this function. | Andrew Bartlett | 2005-12-22 | 1 | -0/+4 | |
| | | | | Andrew Bartlett | |||||
* | r12432: Re-indent and consistantly cancel the transaction. | Andrew Bartlett | 2005-12-22 | 1 | -1/+8 | |
| | | | | Andrew Bartlett | |||||
* | r12431: - the TIME_T_MAX needs to be a singed max value | Stefan Metzmacher | 2005-12-22 | 1 | -3/+16 | |
| | | | | | | - fix the calculation of TIME_T_MAX -> nttime -> TIME_T_MAX metze | |||||
* | r12430: Clarify libnet_join code. Add/fix comments. | Andrew Bartlett | 2005-12-22 | 1 | -10/+10 | |
| | | | | Andrew Bartlett | |||||
* | r12429: make static records always active with a max expire time | Stefan Metzmacher | 2005-12-22 | 1 | -0/+20 | |
| | | | | metze | |||||
* | r12428: releases on 0x1D names are ignored | Stefan Metzmacher | 2005-12-22 | 1 | -0/+4 | |
| | | | | metze | |||||
* | r12427: Move SAMR CreateUser2 to transactions, and re-add support for | Andrew Bartlett | 2005-12-22 | 3 | -27/+78 | |
| | | | | | | | | | | different computer account types. (Earlier code changes removed the BDC case). We don't use the TemplateDomainController, so just have a TemplateServer in provision_templates.ldif Andrew Bartlett | |||||
* | r12426: w2k3 refused 0x1B names registered as group names | Stefan Metzmacher | 2005-12-22 | 1 | -0/+6 | |
| | | | | metze | |||||
* | r12425: match w2k3 and store 0x1D names when they're registered as group name, | Stefan Metzmacher | 2005-12-22 | 1 | -3/+10 | |
| | | | | | | but queries still give not found metze | |||||
* | r12424: static records should not be released | Stefan Metzmacher | 2005-12-22 | 1 | -0/+8 | |
| | | | | metze | |||||
* | r12423: Remove DEBUG(0) printouts in favor of more information to the caller. | Andrew Bartlett | 2005-12-22 | 3 | -6/+7 | |
| | | | | | | I assume this works better with SWAT and the like anyway. Andrew Bartlett | |||||
* | r12422: Some kerberos comments and clarifications. | Andrew Bartlett | 2005-12-22 | 2 | -11/+22 | |
| | | | | Andrew Bartlett |