summaryrefslogtreecommitdiffstats
path: root/librpc
Commit message (Collapse)AuthorAgeFilesLines
...
* winreg: fill in some winreg IDL gaps.Günther Deschner2010-04-081-3/+13
| | | | Guenther
* s4-waf: move to a universal method of recursing into subdirsAndrew Tridgell2010-04-061-1/+1
| | | | This works with both standalone lib builds and bundled builds
* s4-waf: mark the wscript files as python so vim/emacs knows how to highlight ↵Andrew Tridgell2010-04-062-0/+4
| | | | them
* s4-waf: install the rest of the headersAndrew Tridgell2010-04-061-0/+1
|
* build: teach samba_pild.py about the --com-header and --dcom-proxy optionsAndrew Tridgell2010-04-061-2/+8
|
* build: cope with the common gen_ndr files being in the git treeAndrew Tridgell2010-04-061-2/+12
|
* build: much nicer pidl rulesAndrew Tridgell2010-04-061-0/+12
|
* build: add README to explain gen_ndr, and ensure directory existsAndrew Tridgell2010-04-061-0/+1
|
* build: fixes from itaAndrew Tridgell2010-04-061-14/+1
|
* build: mail IDL build rulesAndrew Tridgell2010-04-061-0/+14
|
* libutil: moved the networking defines to util_net.hAndrew Tridgell2010-03-262-0/+2
| | | | These were causing thousands of warnings on solaris8
* s3: re-run make samba3-idl.Günther Deschner2010-03-253-55/+56
| | | | Guenther
* drsblobs: remove utf8string2 from ForestTrustData.Günther Deschner2010-03-252-10/+9
| | | | | | | | Simo, it's not really worth to add a new idl type just for being able to omit the size field. The size field is part of the spec in MS-ADTS 7.1.6.9.3.1 so we should have it as well. Guenther
* idl: drsuapi.idl - fix few more commentsKamen Mazdrashki2010-03-241-7/+5
|
* idl: Regenerate DRSUAPI idl filesKamen Mazdrashki2010-03-245-228/+1050
|
* s4/drs: Pretty print for drsuapi_SecBufferTypeKamen Mazdrashki2010-03-241-0/+23
| | | | | It is a type and mask combined in one DRS field so we have to make a custom ndr_print implementation for this type
* s4/idl: DsAddEntry V3 request descriptionKamen Mazdrashki2010-03-241-0/+33
|
* s4/idl: Remove drsuapi_DsAddEntryExtraErrorBuffer - it is not used anymoreKamen Mazdrashki2010-03-241-5/+0
|
* s4/idl: Complete drsuapi_DsAddEntryErrorInfo descriptionKamen Mazdrashki2010-03-241-4/+4
| | | | | | | Members for Security, Service, Update and System errors renamed to be more descriptive. All those error types share same description.
* s4/idl: Add DsAddEntry Referral error definitionKamen Mazdrashki2010-03-241-5/+53
|
* s4/idl: Add DsAddEntry Name resolution error definitionKamen Mazdrashki2010-03-241-2/+12
|
* s4/drs: pretty print for drsuapi_DsAddEntry_AttrErrListItem_V1Kamen Mazdrashki2010-03-242-1/+12
|
* s4/idl: redefine drsuapi_DsAddEntryErrorInfo1Kamen Mazdrashki2010-03-241-11/+16
| | | | | | | | This actually describes Attribute error during DsAddEntry execution. Structure is renamed to drsuapi_DsAddEntryErrorInfo_Attr. And structure to define Attribute error data are all prefixed with drsuapi_DsAddEntry_AttrErr
* s4/idl: drsuapi_DsAddEntryError refactoredKamen Mazdrashki2010-03-241-7/+7
| | | | | | | Structure description and name was changed to be aligned with WSPP definition. Ref: [MS-DRSR] 4.1.1.1.23
* s4/idl: DsAddEntry - refactor DsAddEntryCtr2 structureKamen Mazdrashki2010-03-241-2/+5
| | | | | Reply structure definition was aligned with WSPP documentation Ref: [MS-DRSR], section 4.1.1.1.7
* s4/idl: Update drsuapi_DsAddEntryErrorInfoX definitionKamen Mazdrashki2010-03-241-5/+8
| | | | | | drsuapi_DsAddEntryErrorInfoX is an extended error description used by most of the error infos returned by DsAddEntry RPC method.
* s4/idl: DIRERR error codes definitionKamen Mazdrashki2010-03-241-0/+14
| | | | | | | DIRERR codes specify class of error returned from DsAddEntry method call. Ref: [MS-DRSR], section 4.1.1.1.25
* s4/idl: DsAddEntry - switch types should be unsignedKamen Mazdrashki2010-03-241-4/+4
|
* idl: fix comment and convert whitespaces to tabsSimo Sorce2010-03-242-45/+45
|
* idl: fix forest trust information idlSimo Sorce2010-03-235-26/+92
| | | | --validate now passes
* s3: Re-run make samba3-idl.Karolin Seeger2010-03-231-0/+4
| | | | Karolin
* security.idl: Add missing builtin groups.Karolin Seeger2010-03-231-0/+4
| | | | Karolin
* librpc/rpc: fix dcerpc_errstr() to handle all nca_s_* status codes and ↵Stefan Metzmacher2010-03-231-10/+52
| | | | | | fallback to WERROR codes metze
* s3:re-run make samba3-idl.Günther Deschner2010-03-233-4/+178
| | | | Guenther
* dcerpc.idl: add nca_s_* status codes from the DCE 1.1 specificationStefan Metzmacher2010-03-231-1/+50
| | | | metze
* idl:drsblobs add code to interpret msDS-TrustForestTrustInfoSimo Sorce2010-03-235-3/+605
|
* s4:lsa Functions to set Domain Trust InformationSimo Sorce2010-03-224-4/+6
|
* charset: fixed a problem with the global use of the iconv_convenience structureAndrew Tridgell2010-03-181-2/+4
| | | | | | | | | | | We had a crash bug where a cached copy of a iconv convenience pointer was used after being freed when loadparm asked for iconv to reload. This could happen if a python module used a iconv based function before loadparm was completed. The fix is to ensure that any use of this pointer remains valid, by reusing the pointer itself when it has already been initialised, but filling in the child elements with the updated values.
* s3: re-run make samba3-idl.Günther Deschner2010-03-165-35/+42
| | | | Guenther
* lsa: fix IDL for lsa_SetTrustedDomainInfoByName.Günther Deschner2010-03-161-3/+3
| | | | Guenther
* s3: re-run make samba3-idl.Günther Deschner2010-03-167-47/+579
| | | | | | Guenther Signed-off-by: Günther Deschner <gd@samba.org>
* s4:idl add lsaRSetForestTrustInformationSimo Sorce2010-03-161-2/+50
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* security.idl - push generated code diffMatthias Dieter Wallnöfer2010-03-162-1/+14
|
* s4:idl change level to type in lsa_ForestTrustRecord.Simo Sorce2010-03-163-10/+10
|
* Added a net acl ds command for modification of ACLs on directory objectsNadezhda Ivanova2010-03-161-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At present the command supports only addition of control access rigts, done so DRS access checks can be tested. It will be expanded to deal with most ways to modify and view a DS ACL. Shifted commands a bit. What used to be net acl is now "net acl nt" as apposed to this, which is "net acl ds" ./bin/net acl ds set --help Usage: set --objectdn=objectdn --car=control right --action=[deny|allow] --trusteedn=trustee-dn Options: -h, --help show this help message and exit --host=HOST LDB URL for database or target server --car=CAR The access control right to allow or deny --action=ACTION Deny or allow access --objectdn=OBJECTDN DN of the object whose SD to modify --trusteedn=TRUSTEEDN DN of the entity that gets access Samba Common Options: -s FILE, --configfile=FILE Configuration file Credentials Options: --simple-bind-dn=DN DN to use for a simple bind --password=PASSWORD Password -U USERNAME, --username=USERNAME Username -W WORKGROUP, --workgroup=WORKGROUP Workgroup -N, --no-pass Don't ask for a password -k KERBEROS, --kerberos=KERBEROS Use Kerberos
* librpc: rerun make idlStefan Metzmacher2010-03-122-1/+4
| | | | metze
* drsuapi.idl: don't mark drsuapi_DsGetMemberships as [todo]Stefan Metzmacher2010-03-121-2/+2
| | | | metze
* winreg: add winreg_KeyType enum.Günther Deschner2010-03-116-20/+68
| | | | Guenther
* librpc: rerun make idlStefan Metzmacher2010-03-113-116/+144
| | | | metze
* drsuapi.idl: finish drsuapi_DsGetNT4ChangeLog idlStefan Metzmacher2010-03-111-15/+20
| | | | metze