diff options
author | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2010-03-17 03:27:05 +0200 |
---|---|---|
committer | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2010-03-24 17:34:45 +0200 |
commit | ef6976dad3234b57016f8dce3f1b8e93d3ddb521 (patch) | |
tree | 21764c8d79855b2a9346bcbfc9c545e3b24de496 | |
parent | 9ad8f808f719af1b680013cc26c737730cb53adb (diff) | |
download | samba-ef6976dad3234b57016f8dce3f1b8e93d3ddb521.tar.gz samba-ef6976dad3234b57016f8dce3f1b8e93d3ddb521.tar.bz2 samba-ef6976dad3234b57016f8dce3f1b8e93d3ddb521.zip |
idl: drsuapi.idl - fix few more comments
-rw-r--r-- | librpc/idl/drsuapi.idl | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index e9d21607f7..97ae9641f0 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -1218,12 +1218,7 @@ interface drsuapi } drsuapi_DsAddEntry_DirErr; /* - * please note the the current idl - * for DsAddEntry does only parse - * what I saw between 2 w2k3 boxes - * in my dssync experiments I got some other replies - * so all I want to say is that this is very incomplete yet... - * --metze + * Ref: DRS_MSG_ADDENTRYREQ_V2, [MS-DRSR]: 4.1.1.1.3 */ typedef struct { drsuapi_DsReplicaObjectListItem first_object; @@ -1231,7 +1226,7 @@ interface drsuapi /* Buffer type is actually more * like a semi Flags - * Ref: DRS_SecBuffer, [MS-DRSR]: 5.41*/ + * Ref: DRS_SecBuffer, [MS-DRSR]: 5.41 */ typedef [v1_enum,noprint] enum { DRSUAPI_SECBUFFER_EMPTY = 0x00000000, DRSUAPI_SECBUFFER_DATA = 0x00000001, @@ -1256,6 +1251,9 @@ interface drsuapi [size_is(buff_count)] drsuapi_SecBuffer *buffers; } drsuapi_SecBufferDesc; + /* + * Ref: DRS_MSG_ADDENTRYREQ_V3, [MS-DRSR]: 4.1.1.1.4 + */ typedef struct { drsuapi_DsReplicaObjectListItem first_object; drsuapi_SecBufferDesc *client_creds; |