s4/idl: drsuapi.idl fix drsuapi_DsReplicaSyncRequest1 description
authorKamen Mazdrashki <kamen.mazdrashki@postpath.com>
Thu, 11 Feb 2010 22:15:10 +0000 (00:15 +0200)
committerAnatoliy Atanasov <anatoliy.atanasov@postpath.com>
Wed, 24 Feb 2010 12:14:06 +0000 (14:14 +0200)
- pointer to naming_context should be [ref] pointer
  (i.e. not NULL pointer)
- other_info is actually the DNS name for Source DSA and is used
  if DRSUAPI_DRS_SYNC_BYNAME is passed
  ref: [MS-DRSR] 5.39

librpc/idl/drsuapi.idl

index e98cd2960270f30914a5f8824c920ac10bda7fe3..b54b7a82a31cd6277d2d378b75d49bfb7b46f860 100644 (file)
@@ -222,9 +222,9 @@ interface drsuapi
        } drsuapi_DsReplicaSyncOptions;
 
        typedef struct {
-               drsuapi_DsReplicaObjectIdentifier *naming_context;
+               [ref] drsuapi_DsReplicaObjectIdentifier *naming_context;
                GUID source_dsa_guid;
-               astring *other_info; /* I assume this is related to the repsFromTo1OtherInfo dns_name */
+               astring *source_dsa_dns; /* Source DSA dns_name in <guid>._msdcs.<domain_dns> form */
                drsuapi_DrsOptions options;
        } drsuapi_DsReplicaSyncRequest1;