Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/librpc/idl/drsblobs.idl

    r740 r988  
    1919         * w2k3 uses version 1
    2020         */
    21         typedef struct {
     21        typedef [public] struct {
    2222                drsuapi_DsAttributeId attid;
    2323                uint32 version;
     
    151151                [in] repsFromToBlob blob
    152152                );
     153
     154        /* Replication schedule structures as defined in MS-ADTS 7.1.4.5
     155         * Appears as attribute of NTDSConnection object
     156         */
     157        typedef [public] struct {
     158                [value(0)] uint32 type;      /* always 0 */
     159                uint32            offset;
     160        } scheduleHeader;
     161
     162        typedef [public] struct {
     163                uint8 slots[168];
     164        } scheduleSlots;
     165
     166        typedef [public] struct {
     167                uint32             size;
     168                [value(0)] uint32  bandwidth;         /* ignored */
     169                [value(1)] uint32  numberOfSchedules; /* always 1 */
     170                scheduleHeader     headerArray[numberOfSchedules];
     171                scheduleSlots      dataArray[numberOfSchedules];
     172        } schedule;
    153173
    154174        /*
     
    613633        } ForestTrustData;
    614634
    615         /* same as lsa_ForestTrustRecordType */
     635        /* same as lsa_ForestTrustRecordType, but only 8 bit */
    616636        typedef [enum8bit] enum {
    617                 FOREST_TRUST_TOP_LEVEL_NAME = 0,
    618                 FOREST_TRUST_TOP_LEVEL_NAME_EX = 1,
    619                 FOREST_TRUST_DOMAIN_INFO = 2
     637                FOREST_TRUST_TOP_LEVEL_NAME = LSA_FOREST_TRUST_TOP_LEVEL_NAME,
     638                FOREST_TRUST_TOP_LEVEL_NAME_EX = LSA_FOREST_TRUST_TOP_LEVEL_NAME_EX,
     639                FOREST_TRUST_DOMAIN_INFO = LSA_FOREST_TRUST_DOMAIN_INFO
    620640        } ForestTrustInfoRecordType;
    621641
     
    623643           the same as in lsa.idl, see collision record types */
    624644        typedef [public,gensize,flag(NDR_NOALIGN)] struct {
    625                 uint32 flags;
     645                lsa_ForestTrustRecordFlags flags;
    626646                NTTIME timestamp;
    627647                ForestTrustInfoRecordType type;
Note: See TracChangeset for help on using the changeset viewer.